mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
netris: init at 0.52
This commit is contained in:
parent
08b198beca
commit
2350511425
32
pkgs/games/netris/default.nix
Normal file
32
pkgs/games/netris/default.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{ stdenv, fetchFromGitHub, ncurses }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "netris";
|
||||
version = "0.52";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "naclander";
|
||||
repo = "netris";
|
||||
rev = "6773c9b2d39a70481a5d6eb5368e9ced6229ad2b";
|
||||
sha256 = "0gmxbpn50pnffidwjchkzph9rh2jm4wfq7hj8msp5vhdq5h0z9hm";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
ncurses
|
||||
];
|
||||
|
||||
configureScript = "./Configure";
|
||||
dontAddPrefix = true;
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp ./netris $out/bin
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A free networked version of T*tris";
|
||||
license = licenses.gpl2;
|
||||
maintainers = with maintainers; [ patryk27 ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -23600,7 +23600,7 @@ in
|
||||
lua = lua5_1;
|
||||
};
|
||||
|
||||
n2048 = callPackage ../games/n2048 {};
|
||||
n2048 = callPackage ../games/n2048 { };
|
||||
|
||||
naev = callPackage ../games/naev { };
|
||||
|
||||
@ -23612,6 +23612,8 @@ in
|
||||
};
|
||||
|
||||
nethack-x11 = callPackage ../games/nethack { x11Mode = true; };
|
||||
|
||||
netris = callPackage ../games/netris { };
|
||||
|
||||
neverball = callPackage ../games/neverball { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user