mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
34 lines
700 B
Nix
34 lines
700 B
Nix
{ 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 = "Free networked version of T*tris";
|
|
mainProgram = "netris";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ patryk27 ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|