toppler: init at 1.1.6

gstqt5
Francesco Gazzetta 2019-07-02 23:58:11 +02:00
parent 5d12512b2d
commit b51410c4bb
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

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