Merge pull request #78190 from dtzWill/feature/nudoku

nudoku: init at 2.0.0

Changed files
+33
pkgs
games
nudoku
top-level
+31
pkgs/games/nudoku/default.nix
···
+
{ 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";
+
};
+
+
# Allow gettext 0.20
+
postPatch = ''
+
substituteInPlace configure.ac --replace 0.19 0.20
+
'';
+
+
nativeBuildInputs = [ autoreconfHook pkgconfig gettext ];
+
buildInputs = [ ncurses ];
+
+
configureFlags = stdenv.lib.optional stdenv.hostPlatform.isMusl "--disable-nls";
+
+
meta = with stdenv.lib; {
+
description = "An ncurses based sudoku game";
+
homepage = "http://jubalh.github.io/nudoku/";
+
license = licenses.gpl3;
+
maintainers = with maintainers; [ dtzWill ];
+
};
+
}
+
+2
pkgs/top-level/all-packages.nix
···
newtonwars = callPackage ../games/newtonwars { };
+
nudoku = callPackage ../games/nudoku { };
+
nxengine-evo = callPackage ../games/nxengine-evo { };
odamex = callPackage ../games/odamex { };