nixpkgs/pkgs/games/netris/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

34 lines
702 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 = "A free networked version of T*tris";
mainProgram = "netris";
license = licenses.gpl2;
maintainers = with maintainers; [ patryk27 ];
platforms = platforms.linux;
};
}