forked from mirrors/nixpkgs
nudoku: init at 2.0.0
(cherry picked from commit 7b0057f41f29bc18608e812bde551e19c994dbe1)
This commit is contained in:
parent
79f86d75d4
commit
62adf1c56b
24
pkgs/games/nudoku/default.nix
Normal file
24
pkgs/games/nudoku/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
||||
|
|
@ -23141,6 +23141,8 @@ in
|
|||
|
||||
newtonwars = callPackage ../games/newtonwars { };
|
||||
|
||||
nudoku = callPackage ../games/nudoku { };
|
||||
|
||||
nxengine-evo = callPackage ../games/nxengine-evo { };
|
||||
|
||||
odamex = callPackage ../games/odamex { };
|
||||
|
|
Loading…
Reference in a new issue