netris: init at 0.52

gstqt5
Patryk Wychowaniec 2020-04-16 18:07:30 +02:00 committed by Emery Hemingway
parent 08b198beca
commit 2350511425
2 changed files with 35 additions and 1 deletions

View 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;
};
}

View File

@ -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 { };