2016-10-02 23:13:24 +02:00
|
|
|
{ lib, stdenv, fetchurl, pkgconfig, zlib, libseccomp, fetchpatch, autoreconfHook, ncurses ? null, perl ? null, pam, systemd, minimal ? false }:
|
2009-01-06 10:28:45 +01:00
|
|
|
|
2009-08-11 22:57:29 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2016-04-28 05:19:02 +02:00
|
|
|
name = "util-linux-${version}";
|
2016-09-05 12:13:31 +02:00
|
|
|
version = lib.concatStringsSep "." ([ majorVersion ]
|
|
|
|
++ lib.optional (patchVersion != "") patchVersion);
|
2016-08-25 01:02:50 +02:00
|
|
|
majorVersion = "2.28";
|
|
|
|
patchVersion = "1";
|
2009-01-06 10:28:45 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-08-25 01:02:50 +02:00
|
|
|
url = "mirror://kernel/linux/utils/util-linux/v${majorVersion}/${name}.tar.xz";
|
|
|
|
sha256 = "03xnaw3c7pavxvvh1vnimcr44hlhhf25whawiyv8dxsflfj4xkiy";
|
2009-01-06 10:28:45 +01:00
|
|
|
};
|
|
|
|
|
2015-05-28 11:19:46 +02:00
|
|
|
patches = [
|
|
|
|
./rtcwake-search-PATH-for-shutdown.patch
|
2016-10-02 23:13:24 +02:00
|
|
|
(fetchpatch {
|
2016-10-03 23:04:39 +02:00
|
|
|
name = "CVE-2016-2779.diff";
|
2016-10-02 23:13:24 +02:00
|
|
|
url = https://github.com/karelzak/util-linux/commit/8e4925016875c6a4f2ab4f833ba66f0fc57396a2.patch;
|
2016-10-03 23:04:39 +02:00
|
|
|
sha256 = "0kmigkq4s1b1ijrq8vcg2a5cw4qnm065m7cb1jn1q1f4x99ycy60";
|
2016-10-02 23:13:24 +02:00
|
|
|
})];
|
2015-04-19 13:29:53 +02:00
|
|
|
|
2016-09-09 00:34:09 +02:00
|
|
|
outputs = [ "bin" "dev" "out" "man" ];
|
2012-08-27 04:53:19 +02:00
|
|
|
|
2014-12-30 10:53:41 +01:00
|
|
|
#FIXME: make it also work on non-nixos?
|
|
|
|
postPatch = ''
|
|
|
|
# Substituting store paths would create a circular dependency on systemd
|
|
|
|
substituteInPlace include/pathnames.h \
|
|
|
|
--replace "/bin/login" "/run/current-system/sw/bin/login" \
|
|
|
|
--replace "/sbin/shutdown" "/run/current-system/sw/bin/shutdown"
|
|
|
|
'';
|
|
|
|
|
2012-03-07 14:45:06 +01:00
|
|
|
crossAttrs = {
|
|
|
|
# Work around use of `AC_RUN_IFELSE'.
|
|
|
|
preConfigure = "export scanf_cv_type_modifier=ms";
|
|
|
|
};
|
|
|
|
|
2010-11-08 23:40:05 +01:00
|
|
|
# !!! It would be better to obtain the path to the mount helpers
|
|
|
|
# (/sbin/mount.*) through an environment variable, but that's
|
|
|
|
# somewhat risky because we have to consider that mount can setuid
|
|
|
|
# root...
|
2009-01-06 10:28:45 +01:00
|
|
|
configureFlags = ''
|
2010-04-21 22:47:15 +02:00
|
|
|
--enable-write
|
2013-01-28 16:55:12 +01:00
|
|
|
--enable-last
|
|
|
|
--enable-mesg
|
|
|
|
--disable-use-tty-group
|
2015-04-01 22:57:06 +02:00
|
|
|
--enable-fs-paths-default=/var/setuid-wrappers:/var/run/current-system/sw/bin:/sbin
|
2009-01-06 10:28:45 +01:00
|
|
|
${if ncurses == null then "--without-ncurses" else ""}
|
2016-02-12 14:26:46 +01:00
|
|
|
${if systemd == null then "" else ''
|
|
|
|
--with-systemd
|
|
|
|
--with-systemdsystemunitdir=$out/lib/systemd/system/
|
|
|
|
''}
|
2009-01-06 10:28:45 +01:00
|
|
|
'';
|
|
|
|
|
2013-06-12 17:12:30 +02:00
|
|
|
makeFlags = "usrbin_execdir=$(bin)/bin usrsbin_execdir=$(bin)/sbin";
|
|
|
|
|
2016-10-02 23:13:24 +02:00
|
|
|
# autoreconfHook is required for CVE-2016-2779
|
|
|
|
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
|
|
|
# libseccomp is required for CVE-2016-2779
|
2013-01-28 16:55:12 +01:00
|
|
|
buildInputs =
|
2016-10-02 23:13:24 +02:00
|
|
|
[ zlib pam libseccomp ]
|
2016-09-05 12:13:31 +02:00
|
|
|
++ lib.optional (ncurses != null) ncurses
|
2016-09-05 18:59:00 +02:00
|
|
|
++ lib.optional (systemd != null) systemd
|
2016-09-05 12:13:31 +02:00
|
|
|
++ lib.optional (perl != null) perl;
|
2013-01-28 16:55:12 +01:00
|
|
|
|
2014-04-05 20:41:23 +02:00
|
|
|
postInstall = ''
|
2014-08-30 19:11:52 +02:00
|
|
|
rm "$bin/bin/su" # su should be supplied by the su package (shadow)
|
2016-09-05 12:13:31 +02:00
|
|
|
'' + lib.optionalString minimal ''
|
|
|
|
rm -rf $out/share/{locale,doc,bash-completion}
|
2014-04-05 20:41:23 +02:00
|
|
|
'';
|
|
|
|
|
2013-01-28 16:55:12 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-09-05 12:13:31 +02:00
|
|
|
meta = with lib; {
|
2016-04-28 05:19:02 +02:00
|
|
|
homepage = https://www.kernel.org/pub/linux/utils/util-linux/;
|
2013-01-28 16:55:12 +01:00
|
|
|
description = "A set of system utilities for Linux";
|
2014-08-30 19:11:52 +02:00
|
|
|
license = licenses.gpl2; # also contains parts under more permissive licenses
|
2015-04-18 11:00:58 +02:00
|
|
|
platforms = platforms.linux;
|
2015-08-25 00:37:54 +02:00
|
|
|
priority = 6; # lower priority than coreutils ("kill") and shadow ("login" etc.) packages
|
2013-01-28 16:55:12 +01:00
|
|
|
};
|
2009-01-06 10:28:45 +01:00
|
|
|
}
|