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

stdenv.mkDerivation {
  name = "coreutils-6.9";
  src = fetchurl {
    url = mirror://gnu/coreutils/coreutils-6.9.tar.bz2;
    sha256 = "1c4p2kiy4m024qcl1przvphy8vhivf8jvclq6bjm1pjps5d8khl9";
  };
}