mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
cuyo: init at 2.1.0
This commit is contained in:
parent
61c6597246
commit
75df675d1f
20
pkgs/games/cuyo/default.nix
Normal file
20
pkgs/games/cuyo/default.nix
Normal 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;
|
||||
};
|
||||
|
||||
}
|
@ -797,6 +797,8 @@ let
|
||||
tileMode = false;
|
||||
};
|
||||
|
||||
cuyo = callPackage ../games/cuyo { };
|
||||
|
||||
contacts = callPackage ../tools/misc/contacts { };
|
||||
|
||||
datamash = callPackage ../tools/misc/datamash { };
|
||||
|
Loading…
Reference in New Issue
Block a user