2021-01-15 09:19:50 +00:00
|
|
|
{ lib, stdenv, fetchurl
|
2017-06-04 18:32:55 +01:00
|
|
|
, coreutils
|
|
|
|
}:
|
|
|
|
|
2020-06-26 21:44:45 +01:00
|
|
|
# Note: this package is used for bootstrapping fetchurl, and thus
|
|
|
|
# cannot use fetchpatch! All mutable patches (generated by GitHub or
|
|
|
|
# cgit) that are needed here should be included directly in Nixpkgs as
|
|
|
|
# files.
|
|
|
|
|
2009-04-22 13:11:21 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-09-01 04:03:04 +01:00
|
|
|
pname = "findutils";
|
2022-02-05 11:47:20 +00:00
|
|
|
version = "4.9.0";
|
2009-04-22 13:11:21 +01:00
|
|
|
|
2003-11-03 10:22:00 +00:00
|
|
|
src = fetchurl {
|
2019-09-01 04:03:04 +01:00
|
|
|
url = "mirror://gnu/findutils/${pname}-${version}.tar.xz";
|
2022-02-05 11:47:20 +00:00
|
|
|
sha256 = "sha256-or+4wJ1DZ3DtxZ9Q+kg+eFsWGjt7nVR1c8sIBl/UYv4=";
|
2003-11-03 10:22:00 +00:00
|
|
|
};
|
2009-04-22 13:11:21 +01:00
|
|
|
|
2020-05-28 01:04:55 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace xargs/xargs.c --replace 'char default_cmd[] = "echo";' 'char default_cmd[] = "${coreutils}/bin/echo";'
|
|
|
|
'';
|
|
|
|
|
2021-07-31 23:19:14 +01:00
|
|
|
patches = [ ./no-install-statedir.patch ];
|
2017-02-16 18:16:51 +00:00
|
|
|
|
2017-08-14 23:12:09 +01:00
|
|
|
buildInputs = [ coreutils ]; # bin/updatedb script needs to call sort
|
2007-08-27 14:42:00 +01:00
|
|
|
|
2017-02-20 20:16:41 +00:00
|
|
|
# Since glibc-2.25 the i686 tests hang reliably right after test-sleep.
|
2017-06-04 18:32:55 +01:00
|
|
|
doCheck
|
2018-08-20 19:43:41 +01:00
|
|
|
= !stdenv.hostPlatform.isDarwin
|
|
|
|
&& !(stdenv.hostPlatform.libc == "glibc" && stdenv.hostPlatform.isi686)
|
|
|
|
&& (stdenv.hostPlatform.libc != "musl")
|
|
|
|
&& stdenv.hostPlatform == stdenv.buildPlatform;
|
2008-02-06 13:18:50 +00:00
|
|
|
|
2014-08-27 00:14:09 +01:00
|
|
|
outputs = [ "out" "info" ];
|
|
|
|
|
2017-08-14 23:12:09 +01:00
|
|
|
configureFlags = [
|
|
|
|
# "sort" need not be on the PATH as a run-time dep, so we need to tell
|
|
|
|
# configure where it is. Covers the cross and native case alike.
|
|
|
|
"SORT=${coreutils}/bin/sort"
|
|
|
|
"--localstatedir=/var/cache"
|
|
|
|
];
|
2017-02-24 15:36:58 +00:00
|
|
|
|
2021-03-12 16:46:06 +00:00
|
|
|
CFLAGS = [
|
|
|
|
# TODO: Revisit upstream issue https://savannah.gnu.org/bugs/?59972
|
|
|
|
# https://github.com/Homebrew/homebrew-core/pull/69761#issuecomment-770268478
|
|
|
|
"-D__nonnull\\(params\\)="
|
|
|
|
];
|
|
|
|
|
2016-02-27 22:15:31 +00:00
|
|
|
enableParallelBuilding = true;
|
2014-10-16 21:06:51 +01:00
|
|
|
|
2008-02-06 13:18:50 +00:00
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.gnu.org/software/findutils/";
|
2009-04-22 13:11:21 +01:00
|
|
|
description = "GNU Find Utilities, the basic directory searching utilities of the GNU operating system";
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
The GNU Find Utilities are the basic directory searching
|
|
|
|
utilities of the GNU operating system. These programs are
|
|
|
|
typically used in conjunction with other programs to provide
|
|
|
|
modular and powerful directory search and file locating
|
|
|
|
capabilities to other commands.
|
|
|
|
|
|
|
|
The tools supplied with this package are:
|
|
|
|
|
|
|
|
* find - search for files in a directory hierarchy;
|
|
|
|
* locate - list files in databases that match a pattern;
|
|
|
|
* updatedb - update a file name database;
|
|
|
|
* xargs - build and execute command lines from standard input.
|
|
|
|
'';
|
|
|
|
|
2021-01-15 09:19:50 +00:00
|
|
|
platforms = lib.platforms.all;
|
2015-03-20 15:52:02 +00:00
|
|
|
|
2021-01-15 09:19:50 +00:00
|
|
|
license = lib.licenses.gpl3Plus;
|
2008-02-06 13:18:50 +00:00
|
|
|
};
|
2003-11-03 10:22:00 +00:00
|
|
|
}
|