mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
d0677e6d45
This adds a warning to the top of each “boot” package that reads: 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. This makes it clear to maintainer that they may need to treat this package a little differently than others. Importantly, we can’t use fetchpatch here due to using <nix/fetchurl.nix>. To avoid having stale hashes, we need to include patches that are subject to changing overtime (for instance, gitweb’s patches contain a version number at the bottom).
71 lines
2.2 KiB
Nix
71 lines
2.2 KiB
Nix
{ stdenv, fetchurl
|
|
, coreutils
|
|
}:
|
|
|
|
# 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.
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "findutils";
|
|
version = "4.7.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/findutils/${pname}-${version}.tar.xz";
|
|
sha256 = "16kqz9yz98dasmj70jwf5py7jk558w96w0vgp3zf9xsqk3gzpzn5";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace xargs/xargs.c --replace 'char default_cmd[] = "echo";' 'char default_cmd[] = "${coreutils}/bin/echo";'
|
|
'';
|
|
|
|
patches = [
|
|
./no-install-statedir.patch
|
|
];
|
|
|
|
buildInputs = [ coreutils ]; # bin/updatedb script needs to call sort
|
|
|
|
# Since glibc-2.25 the i686 tests hang reliably right after test-sleep.
|
|
doCheck
|
|
= !stdenv.hostPlatform.isDarwin
|
|
&& !(stdenv.hostPlatform.libc == "glibc" && stdenv.hostPlatform.isi686)
|
|
&& (stdenv.hostPlatform.libc != "musl")
|
|
&& stdenv.hostPlatform == stdenv.buildPlatform;
|
|
|
|
outputs = [ "out" "info" ];
|
|
|
|
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"
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
homepage = "https://www.gnu.org/software/findutils/";
|
|
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.
|
|
'';
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
|
};
|
|
}
|