nixpkgs/pkgs/games/cuyo/default.nix

22 lines
547 B
Nix
Raw Permalink Normal View History

2021-01-15 04:31:39 +00:00
{ lib, stdenv, fetchurl, SDL, SDL_mixer, zlib }:
2015-10-29 15:09:17 +00:00
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "cuyo";
2015-10-29 15:09:17 +00:00
version = "2.1.0";
2021-01-15 04:31:39 +00:00
2015-10-29 15:09:17 +00:00
src = fetchurl {
url = "https://download.savannah.gnu.org/releases/cuyo/cuyo-2.1.0.tar.gz";
2015-10-29 15:09:17 +00:00
sha256 = "17yqv924x7yvwix7yz9jdhgyar8lzdhqvmpvv0any8rdkajhj23c";
};
2016-08-28 07:54:03 +00:00
buildInputs = [ SDL SDL_mixer zlib ];
2021-01-15 04:31:39 +00:00
2015-10-29 15:09:17 +00:00
meta = {
homepage = "http://karimmi.de/cuyo";
2015-10-29 15:09:17 +00:00
description = "Stacking blocks game, with different rules for each level";
2021-01-15 04:31:39 +00:00
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.linux;
2015-10-29 15:09:17 +00:00
};
2021-01-15 04:31:39 +00:00
2015-10-29 15:09:17 +00:00
}