nsnake: init at 3.0.1

clerie cfde0671 c6fd9036

+26
+24
pkgs/games/nsnake/default.nix
··· 1 + { stdenv, fetchFromGitHub, lib, ncurses }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "nsnake"; 5 + version = "3.0.1"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "alexdantas"; 9 + repo = "nSnake"; 10 + rev = "v${version}"; 11 + sha256 = "sha256-MixwIhyymruruV8G8PjmR9EoZBpaDVBCKBccSFL0lS8="; 12 + }; 13 + 14 + buildInputs = [ ncurses ]; 15 + 16 + makeFlags = [ "PREFIX=$(out)" ]; 17 + 18 + meta = { 19 + description = "ncurses based snake game for the terminal"; 20 + homepage = "https://github.com/alexdantas/nSnake"; 21 + license = lib.licenses.gpl3Plus; 22 + maintainers = with lib.maintainers; [ clerie ]; 23 + }; 24 + }
+2
pkgs/top-level/all-packages.nix
··· 35302 35302 35303 35303 newtonwars = callPackage ../games/newtonwars { }; 35304 35304 35305 + nsnake = callPackage ../games/nsnake { }; 35306 + 35305 35307 nudoku = callPackage ../games/nudoku { }; 35306 35308 35307 35309 nxengine-evo = callPackage ../games/nxengine-evo { };