cuyo: init at 2.1.0

This commit is contained in:
Florent Becker 2015-10-29 16:09:17 +01:00
parent 61c6597246
commit 75df675d1f
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{ stdenv, fetchurl, SDL, SDL_mixer }:
stdenv.mkDerivation rec {
name = "cuyo-${version}";
version = "2.1.0";
src = fetchurl {
url = http://download.savannah.gnu.org/releases/cuyo/cuyo-2.1.0.tar.gz;
sha256 = "17yqv924x7yvwix7yz9jdhgyar8lzdhqvmpvv0any8rdkajhj23c";
};
buildInputs = [ SDL SDL_mixer];
meta = {
homepage = http://karimmi.de/cuyo;
description = "Stacking blocks game, with different rules for each level";
license = stdenv.lib.licenses.gpl2Plus;
};
}

View File

@ -797,6 +797,8 @@ let
tileMode = false;
};
cuyo = callPackage ../games/cuyo { };
contacts = callPackage ../tools/misc/contacts { };
datamash = callPackage ../tools/misc/datamash { };