My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/games/netris/default.nix

32 lines
674 B

{ lib, 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 lib; {
description = "A free networked version of T*tris";
license = licenses.gpl2;
maintainers = with maintainers; [ patryk27 ];
platforms = platforms.linux;
};
}