gettext: Make 0.19 the default

This commit is contained in:
William A. Kennington III
2015-03-26 12:01:42 -07:00
parent 2d695397d8
commit 762861670c
3 changed files with 8 additions and 7 deletions

View File

@@ -1,10 +1,11 @@
{ stdenv, fetchurl, gettext }:
stdenv.lib.overrideDerivation gettext (attrs: rec {
name = "gettext-0.19.4";
name = "gettext-0.18.2";
src = fetchurl {
url = "mirror://gnu/gettext/${name}.tar.gz";
sha256 = "0gvz86m4cs8bdf3mwmwsyx6lrq4ydfxgadrgd9jlx32z3bnz3jca";
sha256 = "516a6370b3b3f46e2fc5a5e222ff5ecd76f3089bc956a7587a6e4f89de17714c";
};
})

View File

@@ -1,11 +1,11 @@
{ stdenv, fetchurl, libiconv, xz }:
stdenv.mkDerivation (rec {
name = "gettext-0.18.2";
name = "gettext-0.19.4";
src = fetchurl {
url = "mirror://gnu/gettext/${name}.tar.gz";
sha256 = "516a6370b3b3f46e2fc5a5e222ff5ecd76f3089bc956a7587a6e4f89de17714c";
sha256 = "0gvz86m4cs8bdf3mwmwsyx6lrq4ydfxgadrgd9jlx32z3bnz3jca";
};
LDFLAGS = if stdenv.isSunOS then "-lm -lmd -lmp -luutil -lnvpair -lnsl -lidmap -lavl -lsec" else "";