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

stdenv.mkDerivation {
  name = "coreutils-5.93";
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/coreutils-5.93.tar.bz2;
    md5 = "955d8abfd3dd8af2ca3af51480f1f9af";
  };
}