add coreutils-6.3, not the default, wait until more stdenv packages need updating

svn path=/nixpkgs/trunk/; revision=6646
This commit is contained in:
Armijn Hemel 2006-10-02 21:43:27 +00:00
parent 2b0b1e93a6
commit 0ec7b4988f

View File

@ -0,0 +1,9 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "coreutils-6.3";
src = fetchurl {
url = ftp://ftp.nluug.nl/pub/gnu/coreutils/coreutils-6.3.tar.bz2;
md5 = "065e9662c5aa2694693910ca9e6c9ec8";
};
}