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

stdenv.mkDerivation {
  name = "coreutils-5.2.1";
  src = fetchurl {
    url = http://catamaran.labs.cs.uu.nl/dist/tarballs/coreutils-5.2.1.tar.bz2;
    md5 = "172ee3c315af93d3385ddfbeb843c53f";
  };
}