summary refs log tree commit diff
path: root/pkgs/tools/misc/findutils/default.nix
blob: c1bbd78af1b17926ff7825ef5595e7a94346bd71 (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://ftp.gnu.org/pub/gnu/findutils/findutils-4.2.26.tar.gz;
    md5 = "9ac4e62937b1fdc4eb643d1d4bf117d3";
  };
  buildInputs = [coreutils];
  patches = [./findutils-path.patch];
}