2022-06-17 21:37:46 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
, autoreconfHook
|
|
|
|
, buildPackages
|
|
|
|
, libiconv
|
|
|
|
, perl
|
|
|
|
, texinfo
|
|
|
|
, xz
|
|
|
|
, gmpSupport ? true, gmp
|
|
|
|
, aclSupport ? stdenv.isLinux, acl
|
|
|
|
, attrSupport ? stdenv.isLinux, attr
|
|
|
|
, selinuxSupport ? false, libselinux, libsepol
|
2018-08-28 20:05:53 +00:00
|
|
|
# No openssl in default version, so openssl-induced rebuilds aren't too big.
|
|
|
|
# It makes *sum functions significantly faster.
|
2022-06-17 21:37:46 +00:00
|
|
|
, minimal ? true
|
|
|
|
, withOpenssl ? !minimal, openssl
|
2015-12-02 22:18:35 +00:00
|
|
|
, withPrefix ? false
|
2016-07-05 18:51:24 +00:00
|
|
|
, singleBinary ? "symlinks" # you can also pass "shebangs" or false
|
2011-10-26 09:58:19 +00:00
|
|
|
}:
|
* The stdenv setup script now defines a generic builder that allows
builders for typical Autoconf-style to be much shorten, e.g.,
. $stdenv/setup
genericBuild
The generic builder does lots of stuff automatically:
- Unpacks source archives specified by $src or $srcs (it knows about
gzip, bzip2, tar, zip, and unpacked source trees).
- Determines the source tree.
- Applies patches specified by $patches.
- Fixes libtool not to search for libraries in /lib etc.
- Runs `configure'.
- Runs `make'.
- Runs `make install'.
- Strips debug information from static libraries.
- Writes nested log information (in the format accepted by
`log2xml').
There are also lots of hooks and variables to customise the generic
builder. See `stdenv/generic/docs.txt'.
* Adapted the base packages (i.e., the ones used by stdenv) to use the
generic builder.
* We now use `curl' instead of `wget' to download files in `fetchurl'.
* Neither `curl' nor `wget' are part of stdenv. We shouldn't
encourage people to download stuff in builders (impure!).
* Updated some packages.
* `buildinputs' is now `buildInputs' (but the old name also works).
* `findInputs' in the setup script now prevents inputs from being
processed multiple times (which could happen, e.g., if an input was
a propagated input of several other inputs; this caused the size
variables like $PATH to blow up exponentially in the worst case).
* Patched GNU Make to write nested log information in the format
accepted by `log2xml'. Also, prior to writing the build command,
Make now writes a line `building X' to indicate what is being
built. This is unfortunately often obscured by the gigantic tool
invocations in many Makefiles. The actual build commands are marked
`unimportant' so that they don't clutter pages generated by
`log2html'.
svn path=/nixpkgs/trunk/; revision=845
2004-03-19 16:53:04 +00:00
|
|
|
|
2022-06-17 21:37:46 +00: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.
|
2020-06-26 20:44:45 +00:00
|
|
|
|
2010-05-21 13:46:54 +00:00
|
|
|
assert aclSupport -> acl != null;
|
2012-09-18 18:48:48 +00:00
|
|
|
assert selinuxSupport -> libselinux != null && libsepol != null;
|
2010-05-21 13:46:54 +00:00
|
|
|
|
2022-06-17 21:37:46 +00:00
|
|
|
let
|
|
|
|
inherit (lib) concatStringsSep isString optional optionals optionalString;
|
|
|
|
isCross = (stdenv.hostPlatform != stdenv.buildPlatform);
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "coreutils" + (optionalString (!minimal) "-full");
|
2022-04-17 12:03:11 +00:00
|
|
|
version = "9.1";
|
2016-12-24 05:26:54 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-12-21 18:46:46 +00:00
|
|
|
url = "mirror://gnu/coreutils/coreutils-${version}.tar.xz";
|
2022-06-12 00:32:32 +00:00
|
|
|
sha256 = "sha256-YaH0ENeLp+fzelpPUObRMgrKMzdUhKMlXt3xejhYBCM=";
|
2016-12-24 05:26:54 +00:00
|
|
|
};
|
|
|
|
|
2022-06-25 16:27:46 +00:00
|
|
|
patches = lib.optionals (stdenv.isDarwin && stdenv.isx86_64) [
|
|
|
|
# Workaround for https://debbugs.gnu.org/cgi/bugreport.cgi?bug=51433
|
|
|
|
./disable-seek-hole.patch
|
|
|
|
];
|
|
|
|
|
2018-09-30 01:55:28 +00:00
|
|
|
postPatch = ''
|
2022-06-17 21:37:46 +00:00
|
|
|
# The test tends to fail on btrfs, f2fs and maybe other unusual filesystems.
|
2019-03-11 05:30:01 +00:00
|
|
|
sed '2i echo Skipping dd sparse test && exit 77' -i ./tests/dd/sparse.sh
|
|
|
|
sed '2i echo Skipping du threshold test && exit 77' -i ./tests/du/threshold.sh
|
2022-09-07 23:33:38 +00:00
|
|
|
sed '2i echo Skipping cp reflink-auto test && exit 77' -i ./tests/cp/reflink-auto.sh
|
2019-03-11 05:30:01 +00:00
|
|
|
sed '2i echo Skipping cp sparse test && exit 77' -i ./tests/cp/sparse.sh
|
|
|
|
sed '2i echo Skipping rm deep-2 test && exit 77' -i ./tests/rm/deep-2.sh
|
|
|
|
sed '2i echo Skipping du long-from-unreadable test && exit 77' -i ./tests/du/long-from-unreadable.sh
|
2018-12-22 11:42:22 +00:00
|
|
|
|
2019-06-13 06:55:52 +00:00
|
|
|
# Some target platforms, especially when building inside a container have
|
|
|
|
# issues with the inotify test.
|
|
|
|
sed '2i echo Skipping tail inotify dir recreate test && exit 77' -i ./tests/tail-2/inotify-dir-recreate.sh
|
|
|
|
|
2018-12-22 11:42:22 +00:00
|
|
|
# sandbox does not allow setgid
|
2019-03-11 05:30:01 +00:00
|
|
|
sed '2i echo Skipping chmod setgid test && exit 77' -i ./tests/chmod/setgid.sh
|
2017-06-21 18:27:57 +00:00
|
|
|
substituteInPlace ./tests/install/install-C.sh \
|
|
|
|
--replace 'mode3=2755' 'mode3=1755'
|
2018-12-22 11:42:22 +00:00
|
|
|
|
2020-01-19 21:41:44 +00:00
|
|
|
# Fails on systems with a rootfs. Looks like a bug in the test, see
|
|
|
|
# https://lists.gnu.org/archive/html/bug-coreutils/2019-12/msg00000.html
|
|
|
|
sed '2i print "Skipping df skip-rootfs test"; exit 77' -i ./tests/df/skip-rootfs.sh
|
|
|
|
|
2018-12-22 11:42:22 +00:00
|
|
|
# these tests fail in the unprivileged nix sandbox (without nix-daemon) as we break posix assumptions
|
|
|
|
for f in ./tests/chgrp/{basic.sh,recurse.sh,default-no-deref.sh,no-x.sh,posix-H.sh}; do
|
2019-03-11 05:30:01 +00:00
|
|
|
sed '2i echo Skipping chgrp && exit 77' -i "$f"
|
2018-12-22 11:42:22 +00:00
|
|
|
done
|
|
|
|
for f in gnulib-tests/{test-chown.c,test-fchownat.c,test-lchown.c}; do
|
2019-03-11 05:30:01 +00:00
|
|
|
echo "int main() { return 77; }" > "$f"
|
2018-12-22 11:42:22 +00:00
|
|
|
done
|
2021-03-13 20:19:53 +00:00
|
|
|
|
2021-11-08 20:55:51 +00:00
|
|
|
# intermittent failures on builders, unknown reason
|
|
|
|
sed '2i echo Skipping du basic test && exit 77' -i ./tests/du/basic.sh
|
2022-06-17 21:37:46 +00:00
|
|
|
'' + (optionalString (stdenv.hostPlatform.libc == "musl") (concatStringsSep "\n" [
|
2019-05-13 20:10:39 +00:00
|
|
|
''
|
|
|
|
echo "int main() { return 77; }" > gnulib-tests/test-parse-datetime.c
|
|
|
|
echo "int main() { return 77; }" > gnulib-tests/test-getlogin.c
|
|
|
|
''
|
2021-09-26 15:00:28 +00:00
|
|
|
])) + (optionalString stdenv.isAarch64 ''
|
|
|
|
sed '2i print "Skipping tail assert test"; exit 77' -i ./tests/tail-2/assert.sh
|
2021-10-29 11:21:08 +00:00
|
|
|
|
|
|
|
# Sometimes fails: https://github.com/NixOS/nixpkgs/pull/143097#issuecomment-954462584
|
|
|
|
sed '2i echo Skipping cut huge range test && exit 77' -i ./tests/misc/cut-huge-range.sh
|
2021-09-26 15:00:28 +00:00
|
|
|
'');
|
2016-12-24 05:26:54 +00:00
|
|
|
|
|
|
|
outputs = [ "out" "info" ];
|
2022-03-28 15:44:09 +00:00
|
|
|
separateDebugInfo = true;
|
2016-12-24 05:26:54 +00:00
|
|
|
|
2022-06-17 21:37:46 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
# autoreconfHook is due to patch, normally only needed for cygwin
|
|
|
|
autoreconfHook
|
|
|
|
perl
|
|
|
|
xz.bin
|
|
|
|
]
|
|
|
|
++ optionals stdenv.hostPlatform.isCygwin [
|
|
|
|
# due to patch
|
|
|
|
texinfo
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [ ]
|
|
|
|
++ optional aclSupport acl
|
|
|
|
++ optional attrSupport attr
|
|
|
|
++ optional gmpSupport gmp
|
|
|
|
++ optional withOpenssl openssl
|
|
|
|
++ optionals selinuxSupport [ libselinux libsepol ]
|
|
|
|
# TODO(@Ericson2314): Investigate whether Darwin could benefit too
|
|
|
|
++ optional (isCross && stdenv.hostPlatform.libc != "glibc") libiconv;
|
|
|
|
|
2022-05-26 10:18:42 +00:00
|
|
|
configureFlags = [ "--with-packager=https://nixos.org" ]
|
2018-08-28 19:46:19 +00:00
|
|
|
++ optional (singleBinary != false)
|
2016-12-24 05:26:54 +00:00
|
|
|
("--enable-single-binary" + optionalString (isString singleBinary) "=${singleBinary}")
|
2018-08-28 20:05:53 +00:00
|
|
|
++ optional withOpenssl "--with-openssl"
|
2018-08-20 18:43:41 +00:00
|
|
|
++ optional stdenv.hostPlatform.isSunOS "ac_cv_func_inotify_init=no"
|
2017-06-20 02:18:22 +00:00
|
|
|
++ optional withPrefix "--program-prefix=g"
|
2022-06-17 21:37:46 +00:00
|
|
|
# the shipped configure script doesn't enable nls, but using autoreconfHook
|
|
|
|
# does so which breaks the build
|
|
|
|
++ optional stdenv.isDarwin "--disable-nls"
|
|
|
|
++ optionals (isCross && stdenv.hostPlatform.libc == "glibc") [
|
2017-06-20 02:18:22 +00:00
|
|
|
# TODO(19b98110126fde7cbb1127af7e3fe1568eacad3d): Needed for fstatfs() I
|
|
|
|
# don't know why it is not properly detected cross building with glibc.
|
|
|
|
"fu_cv_sys_stat_statfs2_bsize=yes"
|
2022-07-04 17:08:53 +00:00
|
|
|
]
|
|
|
|
# /proc/uptime is available on Linux and produces accurate results even if
|
|
|
|
# the boot time is set to the epoch because the system has no RTC. We
|
|
|
|
# explicitly enable it for cases where it can't be detected automatically,
|
|
|
|
# such as when cross-compiling.
|
|
|
|
++ optional stdenv.hostPlatform.isLinux "gl_cv_have_proc_uptime=yes";
|
2017-06-20 02:18:22 +00:00
|
|
|
|
2016-12-24 05:26:54 +00:00
|
|
|
# The tests are known broken on Cygwin
|
2018-11-30 01:19:05 +00:00
|
|
|
# (http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/19025),
|
|
|
|
# Darwin (http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/19351),
|
2016-12-24 05:26:54 +00:00
|
|
|
# and {Open,Free}BSD.
|
|
|
|
# With non-standard storeDir: https://github.com/NixOS/nix/issues/512
|
2022-04-22 11:01:47 +00:00
|
|
|
# On aarch64+musl, test-init.sh fails due to a segfault in diff.
|
2022-06-17 21:37:46 +00:00
|
|
|
doCheck = (!isCross)
|
|
|
|
&& (stdenv.hostPlatform.libc == "glibc" || stdenv.hostPlatform.libc == "musl")
|
|
|
|
&& !(stdenv.hostPlatform.libc == "musl" && stdenv.hostPlatform.isAarch64)
|
2021-08-12 14:59:54 +00:00
|
|
|
&& !stdenv.isAarch32;
|
2017-06-20 02:18:22 +00:00
|
|
|
|
|
|
|
# Prevents attempts of running 'help2man' on cross-built binaries.
|
2022-06-17 21:37:46 +00:00
|
|
|
PERL = if isCross then "missing" else null;
|
2016-12-24 05:26:54 +00:00
|
|
|
|
2021-10-17 20:26:56 +00:00
|
|
|
enableParallelBuilding = true;
|
2016-12-24 05:26:54 +00:00
|
|
|
|
|
|
|
NIX_LDFLAGS = optionalString selinuxSupport "-lsepol";
|
2018-08-20 18:43:41 +00:00
|
|
|
FORCE_UNSAFE_CONFIGURE = optionalString stdenv.hostPlatform.isSunOS "1";
|
2023-02-20 15:17:34 +00:00
|
|
|
env.NIX_CFLAGS_COMPILE = toString ([]
|
2022-05-26 10:24:52 +00:00
|
|
|
# Work around a bogus warning in conjunction with musl.
|
|
|
|
++ optional stdenv.hostPlatform.isMusl "-Wno-error"
|
2023-02-20 15:17:34 +00:00
|
|
|
++ optional stdenv.hostPlatform.isAndroid "-D__USE_FORTIFY_LEVEL=0");
|
2017-06-20 02:18:22 +00:00
|
|
|
|
|
|
|
# Works around a bug with 8.26:
|
|
|
|
# Makefile:3440: *** Recursive variable 'INSTALL' references itself (eventually). Stop.
|
2022-06-17 21:37:46 +00:00
|
|
|
preInstall = optionalString isCross ''
|
2017-06-20 02:18:22 +00:00
|
|
|
sed -i Makefile -e 's|^INSTALL =.*|INSTALL = ${buildPackages.coreutils}/bin/install -c|'
|
|
|
|
'';
|
2016-12-24 05:26:54 +00:00
|
|
|
|
2022-06-17 21:37:46 +00:00
|
|
|
postInstall = optionalString (isCross && !minimal) ''
|
2017-06-20 02:18:22 +00:00
|
|
|
rm $out/share/man/man1/*
|
2018-10-12 10:02:34 +00:00
|
|
|
cp ${buildPackages.coreutils-full}/share/man/man1/* $out/share/man/man1
|
2018-08-28 20:05:53 +00:00
|
|
|
''
|
|
|
|
# du: 8.7 M locale + 0.4 M man pages
|
|
|
|
+ optionalString minimal ''
|
|
|
|
rm -r "$out/share"
|
2017-06-20 02:18:22 +00:00
|
|
|
'';
|
2016-12-24 05:26:54 +00:00
|
|
|
|
2022-06-17 21:37:46 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://www.gnu.org/software/coreutils/";
|
2022-06-17 21:37:46 +00:00
|
|
|
description = "The GNU Core Utilities";
|
2016-12-24 05:26:54 +00:00
|
|
|
longDescription = ''
|
2022-06-17 21:37:46 +00:00
|
|
|
The GNU Core Utilities are the basic file, shell and text manipulation
|
|
|
|
utilities of the GNU operating system. These are the core utilities which
|
|
|
|
are expected to exist on every operating system.
|
2016-12-24 05:26:54 +00:00
|
|
|
'';
|
|
|
|
license = licenses.gpl3Plus;
|
2022-06-17 21:37:46 +00:00
|
|
|
maintainers = with maintainers; [ das_j ];
|
|
|
|
platforms = with platforms; unix ++ windows;
|
2019-02-19 02:11:33 +00:00
|
|
|
priority = 10;
|
2016-12-24 05:26:54 +00:00
|
|
|
};
|
2022-06-17 21:37:46 +00:00
|
|
|
}
|