2017-06-20 02:18:22 +00:00
|
|
|
|
{ stdenv, lib, buildPackages
|
2017-08-12 18:18:58 +00:00
|
|
|
|
, autoreconfHook, texinfo, fetchurl, perl, xz, libiconv, gmp ? null
|
2017-06-20 02:18:22 +00:00
|
|
|
|
, hostPlatform, buildPlatform
|
2011-03-27 04:46:25 +00:00
|
|
|
|
, aclSupport ? false, acl ? null
|
2017-01-04 22:46:34 +00:00
|
|
|
|
, attrSupport ? false, attr ? null
|
2011-10-26 09:58:19 +00:00
|
|
|
|
, selinuxSupport? false, libselinux ? null, libsepol ? null
|
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
|
|
|
|
|
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
|
|
|
|
|
2016-02-18 20:58:41 +00:00
|
|
|
|
with lib;
|
2013-09-14 12:56:10 +00:00
|
|
|
|
|
2017-01-15 18:28:35 +00:00
|
|
|
|
stdenv.mkDerivation rec {
|
2017-03-09 20:42:26 +00:00
|
|
|
|
name = "coreutils-8.27";
|
2016-12-24 05:26:54 +00:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = "mirror://gnu/coreutils/${name}.tar.xz";
|
2017-03-09 20:42:26 +00:00
|
|
|
|
sha256 = "0sv547572iq8ayy8klir4hnngnx92a9nsazmf1wgzfc7xr4x74c8";
|
2016-12-24 05:26:54 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# FIXME needs gcc 4.9 in bootstrap tools
|
|
|
|
|
hardeningDisable = [ "stackprotector" ];
|
|
|
|
|
|
2017-07-12 01:54:13 +00:00
|
|
|
|
patches = optional hostPlatform.isCygwin ./coreutils-8.23-4.cygwin.patch
|
|
|
|
|
++ optional hostPlatform.isDarwin stdenv.secure-format-patch;
|
2016-12-24 05:26:54 +00:00
|
|
|
|
|
|
|
|
|
# The test tends to fail on btrfs and maybe other unusual filesystems.
|
2017-06-20 02:18:22 +00:00
|
|
|
|
postPatch = optionalString (!hostPlatform.isDarwin) ''
|
2016-12-24 05:26:54 +00: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
|
2017-06-21 18:27:57 +00:00
|
|
|
|
sed '2i echo Skipping chmod setgid test && exit 0' -i ./tests/chmod/setgid.sh
|
|
|
|
|
substituteInPlace ./tests/install/install-C.sh \
|
|
|
|
|
--replace 'mode3=2755' 'mode3=1755'
|
2016-12-24 05:26:54 +00:00
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
outputs = [ "out" "info" ];
|
|
|
|
|
|
|
|
|
|
nativeBuildInputs = [ perl xz.bin ];
|
|
|
|
|
configureFlags =
|
|
|
|
|
optional (singleBinary != false)
|
|
|
|
|
("--enable-single-binary" + optionalString (isString singleBinary) "=${singleBinary}")
|
2017-06-20 02:18:22 +00: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-24 05:26:54 +00:00
|
|
|
|
|
|
|
|
|
buildInputs = [ gmp ]
|
|
|
|
|
++ optional aclSupport acl
|
|
|
|
|
++ optional attrSupport attr
|
2017-08-12 18:18:58 +00:00
|
|
|
|
++ optionals hostPlatform.isCygwin [ autoreconfHook texinfo ] # due to patch
|
2017-06-20 02:18:22 +00:00
|
|
|
|
++ optionals selinuxSupport [ libselinux libsepol ]
|
|
|
|
|
# TODO(@Ericson2314): Investigate whether Darwin could benefit too
|
|
|
|
|
++ optional (hostPlatform != buildPlatform && hostPlatform.libc != "glibc") libiconv;
|
2016-12-24 05:26:54 +00: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-20 02:18:22 +00:00
|
|
|
|
doCheck = hostPlatform == buildPlatform
|
|
|
|
|
&& hostPlatform.libc == "glibc"
|
|
|
|
|
&& builtins.storeDir == "/nix/store";
|
|
|
|
|
|
|
|
|
|
# Prevents attempts of running 'help2man' on cross-built binaries.
|
2017-06-23 21:45:27 +00:00
|
|
|
|
PERL = if hostPlatform == buildPlatform then null else "missing";
|
2016-12-24 05:26:54 +00:00
|
|
|
|
|
|
|
|
|
# Saw random failures like ‘help2man: can't get '--help' info from
|
|
|
|
|
# man/sha512sum.td/sha512sum’.
|
|
|
|
|
enableParallelBuilding = false;
|
|
|
|
|
|
|
|
|
|
NIX_LDFLAGS = optionalString selinuxSupport "-lsepol";
|
2017-06-20 02:18:22 +00:00
|
|
|
|
FORCE_UNSAFE_CONFIGURE = optionalString hostPlatform.isSunOS "1";
|
|
|
|
|
|
|
|
|
|
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.
|
2017-06-23 21:45:27 +00:00
|
|
|
|
preInstall = optionalString (hostPlatform != buildPlatform) ''
|
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
|
|
|
|
|
2017-06-23 21:45:27 +00:00
|
|
|
|
postInstall = optionalString (hostPlatform != buildPlatform) ''
|
2017-06-20 02:18:22 +00:00
|
|
|
|
rm $out/share/man/man1/*
|
|
|
|
|
cp ${buildPackages.coreutils}/share/man/man1/* $out/share/man/man1
|
|
|
|
|
'';
|
2016-12-24 05:26:54 +00:00
|
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
|
homepage = http://www.gnu.org/software/coreutils/;
|
|
|
|
|
description = "The basic file, shell and text manipulation utilities of the GNU operating system";
|
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
'';
|
2016-02-22 18:32:53 +00:00
|
|
|
|
|
2016-12-24 05:26:54 +00:00
|
|
|
|
license = licenses.gpl3Plus;
|
2014-10-16 20:06:51 +00:00
|
|
|
|
|
2016-12-24 05:26:54 +00:00
|
|
|
|
platforms = platforms.all;
|
2015-03-18 19:20:18 +00:00
|
|
|
|
|
2016-12-24 05:26:54 +00:00
|
|
|
|
maintainers = [ maintainers.eelco ];
|
|
|
|
|
};
|
2017-06-20 02:18:22 +00:00
|
|
|
|
|
2016-12-24 05:26:54 +00:00
|
|
|
|
}
|