about summary refs log tree commit diff
path: root/pkgs/tools/misc/coreutils/default.fix
blob: d5a4b72955693902de58f06ce5755e53e2842c97 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{stdenv, fetchurl}: derivation {
  name = "coreutils-5.0";
  system = stdenv.system;
  builder = ./builder.sh;
  src = fetchurl {
    url = ftp://ftp.nluug.nl/pub/gnu/coreutils/coreutils-5.0.tar.bz2;
    md5 = "94e5558ee2a65723d4840bfde2d323f0";
  };
  stdenv = stdenv;
}