mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
new autoconf, gettext and coreutils. Tested to build in work in NixOS.
svn path=/nixpkgs/trunk/; revision=5532
This commit is contained in:
parent
0176b927c4
commit
f590067ee0
|
@ -1,8 +1,8 @@
|
|||
{stdenv, fetchurl}: stdenv.mkDerivation {
|
||||
name = "gettext-0.14.5";
|
||||
name = "gettext-0.14.6";
|
||||
src = fetchurl {
|
||||
url = http://nix.cs.uu.nl/dist/tarballs/gettext-0.14.5.tar.gz;
|
||||
md5 = "e2f6581626a22a0de66dce1d81d00de3";
|
||||
url = ftp://ftp.nluug.nl/pub/gnu/gettext/gettext-0.14.6.tar.gz;
|
||||
md5 = "c26fc7f0a493c5c7c39bbc4e7ed42790";
|
||||
};
|
||||
configureFlags = "--disable-csharp";
|
||||
}
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
{stdenv, fetchurl, m4, perl}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "autoconf-2.59";
|
||||
name = "autoconf-2.60";
|
||||
src = fetchurl {
|
||||
url = http://nix.cs.uu.nl/dist/tarballs/autoconf-2.59.tar.bz2;
|
||||
md5 = "1ee40f7a676b3cfdc0e3f7cd81551b5f";
|
||||
url = ftp://ftp.nluug.nl/pub/gnu/autoconf/autoconf-2.60.tar.bz2;
|
||||
md5 = "019609c29d0cbd9110c38480304aafc8";
|
||||
};
|
||||
buildInputs = [m4 perl];
|
||||
}
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
{stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "coreutils-5.96";
|
||||
name = "coreutils-5.97";
|
||||
src = fetchurl {
|
||||
url = ftp://ftp.nluug.nl/pub/gnu/coreutils/coreutils-5.96.tar.bz2;
|
||||
md5 = "bf55d069d82128fd754a090ce8b5acff";
|
||||
url = ftp://ftp.nluug.nl/pub/gnu/coreutils/coreutils-5.97.tar.gz;
|
||||
md5 = "bdec4b75c76ac9bf51b6dd1747d3b06e";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue