Skip to content

Commit

Permalink
Merge pull request #10695 from FlorentBecker/cuyo
Browse files Browse the repository at this point in the history
cuyo: init at 2.1.0
  • Loading branch information
jagajaga committed Oct 29, 2015
2 parents b7ab0a4 + 75df675 commit 91bc2e9
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
20 changes: 20 additions & 0 deletions pkgs/games/cuyo/default.nix
Original file line number Diff line number Diff line change
@@ -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;
};

}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -799,6 +799,8 @@ let
tileMode = false;
};

cuyo = callPackage ../games/cuyo { };

contacts = callPackage ../tools/misc/contacts { };

datamash = callPackage ../tools/misc/datamash { };
Expand Down

0 comments on commit 91bc2e9

Please sign in to comment.