Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
50 lines
902 B
Nix
50 lines
902 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
ncurses,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "netris";
|
|
version = "0.52";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "naclander";
|
|
repo = "netris";
|
|
rev = "6773c9b2d39a70481a5d6eb5368e9ced6229ad2b";
|
|
sha256 = "0gmxbpn50pnffidwjchkzph9rh2jm4wfq7hj8msp5vhdq5h0z9hm";
|
|
};
|
|
|
|
patches = [
|
|
# https://github.com/naclander/netris/pull/1
|
|
./configure-fixes-for-gcc-14.patch
|
|
];
|
|
|
|
buildInputs = [
|
|
ncurses
|
|
];
|
|
|
|
configureScript = "./Configure";
|
|
dontAddPrefix = true;
|
|
|
|
configureFlags = [
|
|
"--cc"
|
|
"${stdenv.cc.targetPrefix}cc"
|
|
"-O2"
|
|
];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp ./netris $out/bin
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Free networked version of T*tris";
|
|
mainProgram = "netris";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ patryk27 ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|