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

stdenv.mkDerivation {
  name = "findutils-4.2.26";
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/findutils-4.2.26.tar.gz;
    md5 = "9ac4e62937b1fdc4eb643d1d4bf117d3";
  };
  buildInputs = [coreutils];
  patches = [./findutils-path.patch];
}