summary refs log tree commit diff
path: root/pkgs/tools/misc/coreutils-5/default.nix
blob: de1ff1c4a907356a7621e23826b02681542522ab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{stdenv, fetchurl, perl ? null}:

stdenv.mkDerivation {
  name = "coreutils-5.97";
  src = fetchurl {
    url = http://nixos.org/tarballs/coreutils-5.97.tar.gz;
    md5 = "bdec4b75c76ac9bf51b6dd1747d3b06e";
  };
  patches = [./dietlibc.patch];
}