2017-06-19 22:18:22 -04:00
|
|
|
|
{ stdenv, lib, buildPackages
|
|
|
|
|
|
, autoconf, automake114x, texinfo, fetchurl, perl, xz, libiconv, gmp ? null
|
|
|
|
|
|
, hostPlatform, buildPlatform
|
2011-03-27 04:46:25 +00:00
|
|
|
|
, aclSupport ? false, acl ? null
|
2017-01-05 00:46:34 +02:00
|
|
|
|
, attrSupport ? false, attr ? null
|
2011-10-26 09:58:19 +00:00
|
|
|
|
, selinuxSupport? false, libselinux ? null, libsepol ? null
|
2015-12-02 17:18:35 -05:00
|
|
|
|
, withPrefix ? false
|
2016-07-05 20:51:24 +02:00
|
|
|
|
, singleBinary ? "symlinks" # you can also pass "shebangs" or false
|
2011-10-26 09:58:19 +00:00
|
|
|
|
}:
|
2004-03-19 16:53:04 +00:00
|
|
|
|
|
2010-05-21 13:46:54 +00:00
|
|
|
|
assert aclSupport -> acl != null;
|
2012-09-18 14:48:48 -04:00
|
|
|
|
assert selinuxSupport -> libselinux != null && libsepol != null;
|
2010-05-21 13:46:54 +00:00
|
|
|
|
|
2016-02-18 21:58:41 +01:00
|
|
|
|
with lib;
|
2013-09-14 14:56:10 +02:00
|
|
|
|
|
2017-01-15 13:28:35 -05:00
|
|
|
|
stdenv.mkDerivation rec {
|
2017-03-09 14:42:26 -06:00
|
|
|
|
name = "coreutils-8.27";
|
2009-11-08 00:32:12 +00:00
|
|
|
|
|
2016-12-23 21:26:54 -08:00
|
|
|
|
src = fetchurl {
|
|
|
|
|
|
url = "mirror://gnu/coreutils/${name}.tar.xz";
|
2017-03-09 14:42:26 -06:00
|
|
|
|
sha256 = "0sv547572iq8ayy8klir4hnngnx92a9nsazmf1wgzfc7xr4x74c8";
|
2016-12-23 21:26:54 -08:00
|
|
|
|
};
|
2008-02-06 13:18:50 +00:00
|
|
|
|
|
2016-12-23 21:26:54 -08:00
|
|
|
|
# FIXME needs gcc 4.9 in bootstrap tools
|
|
|
|
|
|
hardeningDisable = [ "stackprotector" ];
|
2016-02-22 18:32:53 +00:00
|
|
|
|
|
2017-06-19 22:18:22 -04:00
|
|
|
|
patches = optional hostPlatform.isCygwin ./coreutils-8.23-4.cygwin.patch;
|
2014-10-16 22:06:51 +02:00
|
|
|
|
|
2016-12-23 21:26:54 -08:00
|
|
|
|
# The test tends to fail on btrfs and maybe other unusual filesystems.
|
2017-06-19 22:18:22 -04:00
|
|
|
|
postPatch = optionalString (!hostPlatform.isDarwin) ''
|
2016-12-23 21:26:54 -08:00
|
|
|
|
sed '2i echo Skipping dd sparse test && exit 0' -i ./tests/dd/sparse.sh
|
|
|
|
|
|
sed '2i echo Skipping cp sparse test && exit 0' -i ./tests/cp/sparse.sh
|
|
|
|
|
|
sed '2i echo Skipping rm deep-2 test && exit 0' -i ./tests/rm/deep-2.sh
|
|
|
|
|
|
sed '2i echo Skipping du long-from-unreadable test && exit 0' -i ./tests/du/long-from-unreadable.sh
|
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
|
|
outputs = [ "out" "info" ];
|
|
|
|
|
|
|
|
|
|
|
|
nativeBuildInputs = [ perl xz.bin ];
|
|
|
|
|
|
configureFlags =
|
|
|
|
|
|
optional (singleBinary != false)
|
|
|
|
|
|
("--enable-single-binary" + optionalString (isString singleBinary) "=${singleBinary}")
|
2017-06-19 22:18:22 -04:00
|
|
|
|
++ optional hostPlatform.isSunOS "ac_cv_func_inotify_init=no"
|
|
|
|
|
|
++ optional withPrefix "--program-prefix=g"
|
|
|
|
|
|
++ optionals (hostPlatform != buildPlatform && hostPlatform.libc == "glibc") [
|
|
|
|
|
|
# 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"
|
|
|
|
|
|
];
|
|
|
|
|
|
|
2016-12-23 21:26:54 -08:00
|
|
|
|
|
|
|
|
|
|
buildInputs = [ gmp ]
|
|
|
|
|
|
++ optional aclSupport acl
|
|
|
|
|
|
++ optional attrSupport attr
|
2017-06-19 22:18:22 -04:00
|
|
|
|
++ optionals hostPlatform.isCygwin [ autoconf automake114x texinfo ] # due to patch
|
|
|
|
|
|
++ optionals selinuxSupport [ libselinux libsepol ]
|
|
|
|
|
|
# TODO(@Ericson2314): Investigate whether Darwin could benefit too
|
|
|
|
|
|
++ optional (hostPlatform != buildPlatform && hostPlatform.libc != "glibc") libiconv;
|
2015-11-07 05:14:15 +01:00
|
|
|
|
|
2016-12-23 21:26:54 -08:00
|
|
|
|
# The tests are known broken on Cygwin
|
|
|
|
|
|
# (http://thread.gmane.org/gmane.comp.gnu.core-utils.bugs/19025),
|
|
|
|
|
|
# Darwin (http://thread.gmane.org/gmane.comp.gnu.core-utils.bugs/19351),
|
|
|
|
|
|
# and {Open,Free}BSD.
|
|
|
|
|
|
# With non-standard storeDir: https://github.com/NixOS/nix/issues/512
|
2017-06-19 22:18:22 -04:00
|
|
|
|
doCheck = hostPlatform == buildPlatform
|
|
|
|
|
|
&& hostPlatform.libc == "glibc"
|
|
|
|
|
|
&& builtins.storeDir == "/nix/store";
|
|
|
|
|
|
|
|
|
|
|
|
# Prevents attempts of running 'help2man' on cross-built binaries.
|
|
|
|
|
|
${if hostPlatform == buildPlatform then null else "PERL"} = "missing";
|
2010-04-04 18:10:42 +00:00
|
|
|
|
|
2016-12-23 21:26:54 -08:00
|
|
|
|
# Saw random failures like ‘help2man: can't get '--help' info from
|
|
|
|
|
|
# man/sha512sum.td/sha512sum’.
|
|
|
|
|
|
enableParallelBuilding = false;
|
2012-12-12 17:00:32 +01:00
|
|
|
|
|
2016-12-23 21:26:54 -08:00
|
|
|
|
NIX_LDFLAGS = optionalString selinuxSupport "-lsepol";
|
2017-06-19 22:18:22 -04:00
|
|
|
|
FORCE_UNSAFE_CONFIGURE = optionalString hostPlatform.isSunOS "1";
|
2016-12-24 22:27:52 +02:00
|
|
|
|
|
2017-06-19 22:18:22 -04:00
|
|
|
|
makeFlags = optionalString hostPlatform.isDarwin "CFLAGS=-D_FORTIFY_SOURCE=0";
|
|
|
|
|
|
|
|
|
|
|
|
# Works around a bug with 8.26:
|
|
|
|
|
|
# Makefile:3440: *** Recursive variable 'INSTALL' references itself (eventually). Stop.
|
|
|
|
|
|
${if hostPlatform == buildPlatform then null else "preInstall"} = ''
|
|
|
|
|
|
sed -i Makefile -e 's|^INSTALL =.*|INSTALL = ${buildPackages.coreutils}/bin/install -c|'
|
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
|
|
${if hostPlatform == buildPlatform then null else "postInstall"} = ''
|
|
|
|
|
|
rm $out/share/man/man1/*
|
|
|
|
|
|
cp ${buildPackages.coreutils}/share/man/man1/* $out/share/man/man1
|
|
|
|
|
|
'';
|
2012-12-12 17:00:32 +01:00
|
|
|
|
|
2016-12-23 21:26:54 -08:00
|
|
|
|
meta = {
|
|
|
|
|
|
homepage = http://www.gnu.org/software/coreutils/;
|
|
|
|
|
|
description = "The basic file, shell and text manipulation utilities of the GNU operating system";
|
2009-11-08 00:32:12 +00:00
|
|
|
|
|
2016-12-23 21:26:54 -08:00
|
|
|
|
longDescription = ''
|
|
|
|
|
|
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.
|
|
|
|
|
|
'';
|
2009-11-19 22:46:45 +00:00
|
|
|
|
|
2016-12-23 21:26:54 -08:00
|
|
|
|
license = licenses.gpl3Plus;
|
2010-06-23 14:35:18 +00:00
|
|
|
|
|
2016-12-23 21:26:54 -08:00
|
|
|
|
platforms = platforms.all;
|
2012-01-18 20:09:26 +00:00
|
|
|
|
|
2016-12-23 21:26:54 -08:00
|
|
|
|
maintainers = [ maintainers.eelco ];
|
|
|
|
|
|
};
|
2017-06-19 22:18:22 -04:00
|
|
|
|
|
2016-12-23 21:26:54 -08:00
|
|
|
|
}
|