nixpkgs/pkgs/games/nudoku/default.nix

33 lines
815 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, gettext, ncurses }:
stdenv.mkDerivation rec {
pname = "nudoku";
2020-11-22 05:10:07 +00:00
version = "2.1.0";
src = fetchFromGitHub {
owner = "jubalh";
repo = pname;
rev = version;
2020-11-22 05:10:07 +00:00
sha256 = "12v00z3p0ymi8f3w4b4bgl4c76irawn3kmd147r0ap6s9ssx2q6m";
};
2020-01-21 17:11:43 +00:00
# Allow gettext 0.20
postPatch = ''
substituteInPlace configure.ac --replace 0.19 0.20
'';
nativeBuildInputs = [ autoreconfHook pkgconfig gettext ];
buildInputs = [ ncurses ];
2021-01-15 04:31:39 +00:00
configureFlags = lib.optional stdenv.hostPlatform.isMusl "--disable-nls";
meta = with lib; {
description = "An ncurses based sudoku game";
homepage = "http://jubalh.github.io/nudoku/";
license = licenses.gpl3;
2020-11-25 04:20:00 +00:00
platforms = platforms.all;
maintainers = with maintainers; [ dtzWill ];
};
}