* coreutils-6.10, findutils-4.2.32.

* Added some meta attributes.

svn path=/nixpkgs/branches/stdenv-updates/; revision=10511
This commit is contained in:
Eelco Dolstra
2008-02-06 13:18:50 +00:00
parent d3993b18fb
commit 8cd1b893cf
9 changed files with 60 additions and 8 deletions
+7
View File
@@ -2,10 +2,17 @@
stdenv.mkDerivation {
name = "diffutils-2.8.1";
src = fetchurl {
url = mirror://gnu/diffutils/diffutils-2.8.1.tar.gz;
md5 = "71f9c5ae19b60608f6c7f162da86a428";
};
/* If no explicit coreutils is given, use the one from stdenv. */
buildInputs = [coreutils];
meta = {
homepage = http://www.gnu.org/software/diffutils/diffutils.html;
description = "Commands for showing the differences between files (diff, cmp, etc.)";
};
}
+6
View File
@@ -2,8 +2,14 @@
stdenv.mkDerivation {
name = "gawk-3.1.6";
src = fetchurl {
url = mirror://gnu/gawk/gawk-3.1.6.tar.bz2;
sha256 = "0v6ba4hxfiiy3bny5japd3zmzxlh8vdkmswk96yngd6i1dddsgsi";
};
meta = {
homepage = http://www.gnu.org/software/gawk/;
description = "GNU implementation of the AWK programming language";
};
}
+7
View File
@@ -2,9 +2,16 @@
stdenv.mkDerivation {
name = "gnugrep-2.5.3";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/grep-2.5.3-with-info.tar.bz2;
sha256 = "0rg9dipksqzbg8v1xalib1n3xkkycc5r1l2gb9cxy1cz3cjip5l8";
};
buildInputs = [pcre];
meta = {
homepage = http://www.gnu.org/software/grep/;
description = "GNU implementation of the Unix grep command";
};
}
+7
View File
@@ -2,10 +2,17 @@
stdenv.mkDerivation {
name = "gnused-4.1.5";
src = fetchurl {
url = mirror://gnu/sed/sed-4.1.5.tar.gz;
md5 = "7a1cbbbb3341287308e140bd4834c3ba";
};
# !!! hack: this should go away in gnused > 4.1.5
patches = [./gettext-fix.patch];
meta = {
homepage = http://www.gnu.org/software/grep/;
description = "GNU implementation of the Unix sed command";
};
}