nudoku: init at 2.0.0

(cherry picked from commit 7b0057f41f29bc18608e812bde551e19c994dbe1)
This commit is contained in:
Will Dietz 2020-01-21 10:13:02 -06:00
parent 79f86d75d4
commit 62adf1c56b
No known key found for this signature in database
GPG Key ID: EBB0EA4124809D02
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, gettext, ncurses }:
stdenv.mkDerivation rec {
pname = "nudoku";
version = "2.0.0";
src = fetchFromGitHub {
owner = "jubalh";
repo = pname;
rev = version;
sha256 = "0rj8ajni7gssj0qbf1jn51699sadxwsr6ca2718w74psv7acda8h";
};
nativeBuildInputs = [ autoreconfHook pkgconfig gettext ];
buildInputs = [ ncurses ];
meta = with stdenv.lib; {
description = "An ncurses based sudoku game";
homepage = "http://jubalh.github.io/nudoku/";
license = licenses.gpl3;
maintainers = with maintainers; [ dtzWill ];
};
}

View File

@ -23141,6 +23141,8 @@ in
newtonwars = callPackage ../games/newtonwars { };
nudoku = callPackage ../games/nudoku { };
nxengine-evo = callPackage ../games/nxengine-evo { };
odamex = callPackage ../games/odamex { };