nudoku: fix for gettext 0.20

This commit is contained in:
Will Dietz 2020-01-21 11:11:43 -06:00
parent 52332244bd
commit 7187eae189
No known key found for this signature in database
GPG key ID: EBB0EA4124809D02

View file

@ -11,6 +11,11 @@ stdenv.mkDerivation rec {
sha256 = "0rj8ajni7gssj0qbf1jn51699sadxwsr6ca2718w74psv7acda8h";
};
# Allow gettext 0.20
postPatch = ''
substituteInPlace configure.ac --replace 0.19 0.20
'';
nativeBuildInputs = [ autoreconfHook pkgconfig gettext ];
buildInputs = [ ncurses ];