Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5824,6 +5824,16 @@
githubId = 131844;
name = "Igor Pashev";
};
patryk27 = {
email = "wychowaniec.patryk@gmail.com";
github = "Patryk27";
githubId = 3395477;
name = "Patryk Wychowaniec";
keys = [{
longkeyid = "rsa4096/0xF62547D075E09767";
fingerprint = "196A BFEC 6A1D D1EC 7594 F8D1 F625 47D0 75E0 9767";
}];
};
patternspandemic = {
email = "patternspandemic@live.com";
github = "patternspandemic";
Expand Down
32 changes: 32 additions & 0 deletions pkgs/games/netris/default.nix
Original file line number Diff line number Diff line change
@@ -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;
};
}
4 changes: 3 additions & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23590,7 +23590,7 @@ in
lua = lua5_1;
};

n2048 = callPackage ../games/n2048 {};
n2048 = callPackage ../games/n2048 { };

naev = callPackage ../games/naev { };

Expand All @@ -23602,6 +23602,8 @@ in
};

nethack-x11 = callPackage ../games/nethack { x11Mode = true; };

netris = callPackage ../games/netris { };

neverball = callPackage ../games/neverball { };

Expand Down