94fe7734fa
* GCC 3.4.5. * Updated several other stdenv packages. * Modified the builders of several packages to use the generic builder. svn path=/nixpkgs/trunk/; revision=4336
10 lines
213 B
Nix
10 lines
213 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "coreutils-5.93";
|
|
src = fetchurl {
|
|
url = http://ftp.gnu.org/pub/gnu/coreutils/coreutils-5.93.tar.bz2;
|
|
md5 = "955d8abfd3dd8af2ca3af51480f1f9af";
|
|
};
|
|
}
|