about summary refs log tree commit diff
path: root/pkgs/tools/misc/findutils-static/default.nix
blob: 1f5702f93f45d5f6b81298aa4f3a286a2f58917d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{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];
  LDFLAGS="-static";
  configureFlags="--disable-nls --without-included-regex";
}