Merge pull request #64197 from fgaz/toppler/init

toppler: init at 1.1.6
This commit is contained in:
markuskowa 2019-07-03 22:55:53 +02:00 committed by GitHub
commit a53646ddce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ stdenv
, fetchurl
, SDL
, SDL_mixer
, zlib
}:
stdenv.mkDerivation rec {
pname = "toppler";
version = "1.1.6";
src = fetchurl {
url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz";
sha256 = "0ifccissd8sh78kpwh7dafx4ah7hkhqz6nf4z2hdnalw702jkg3x";
};
buildInputs = [
SDL
SDL_mixer
zlib
];
meta = with stdenv.lib; {
description = "Jump and run game, reimplementation of Tower Toppler/Nebulus";
homepage = "http://toppler.sourceforge.net/";
license = licenses.gpl2;
maintainers = with maintainers; [ fgaz ];
platforms = platforms.all;
};
}

View file

@ -22004,6 +22004,8 @@ in
tome4 = callPackage ../games/tome4 { };
toppler = callPackage ../games/toppler { };
trackballs = callPackage ../games/trackballs { };
tremulous = callPackage ../games/tremulous { };