* Got rid of all --disable-static flags; they're redundant now.

* Also a bunch of style cleanups (tabs, with args, ...).

svn path=/nixpkgs/branches/stdenv-updates/; revision=15235
This commit is contained in:
Eelco Dolstra
2009-04-21 23:18:09 +00:00
parent 2a699fe5fb
commit 94d7d1fdbb
75 changed files with 241 additions and 336 deletions

View File

@@ -1,9 +0,0 @@
args: with args;
stdenv.mkDerivation {
name = "gettext-0.14.6";
src = fetchurl {
url = mirror://gnu/gettext/gettext-0.14.6.tar.gz;
md5 = "c26fc7f0a493c5c7c39bbc4e7ed42790";
};
configureFlags = "--disable-csharp";
}

View File

@@ -1,9 +0,0 @@
args: with args;
stdenv.mkDerivation {
name = "gettext-0.15";
src = fetchurl {
url = mirror://gnu/gettext/gettext-0.15.tar.gz;
md5 = "16bc6e4d37ac3d07495f737a2349a22b";
};
configureFlags = "--disable-csharp";
}

View File

@@ -1,9 +0,0 @@
args: with args;
stdenv.mkDerivation {
name = "gettext-0.16.1";
src = fetchurl {
url = mirror://gnu/gettext/gettext-0.16.1.tar.gz;
md5 = "3d9ad24301c6d6b17ec30704a13fe127";
};
configureFlags = "--disable-csharp";
}

View File

@@ -1,9 +1,12 @@
args: with args;
{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "gettext-" + version;
name = "gettext-0.17";
src = fetchurl {
url = "mirror://gnu/gettext/${name}.tar.gz";
sha256 = "1fipjpaxxwifdw6cbr7mkxp1yvy643i38nhlh7124bqnisxki5i0";
};
configureFlags = "--disable-csharp --enable-shared --disable-static";
configureFlags = "--disable-csharp";
}