mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
93e511c319
HTTP -> HTTPS for: - http://savannah.gnu.org/ - http://git.savannah.gnu.org/ - http://download.savannah.gnu.org/ - http://svn.savannah.gnu.org/
22 lines
575 B
Nix
22 lines
575 B
Nix
{ stdenv, fetchurl, SDL, SDL_mixer, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "cuyo-${version}";
|
|
version = "2.1.0";
|
|
|
|
src = fetchurl {
|
|
url = https://download.savannah.gnu.org/releases/cuyo/cuyo-2.1.0.tar.gz;
|
|
sha256 = "17yqv924x7yvwix7yz9jdhgyar8lzdhqvmpvv0any8rdkajhj23c";
|
|
};
|
|
|
|
buildInputs = [ SDL SDL_mixer zlib ];
|
|
|
|
meta = {
|
|
homepage = http://karimmi.de/cuyo;
|
|
description = "Stacking blocks game, with different rules for each level";
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
|
|
}
|