2017-01-19 17:11:23 +03:00
|
|
|
{ lib, stdenv, fetchurl, pkgconfig, zlib, fetchpatch, shadow
|
2017-01-19 16:48:00 +03:00
|
|
|
, ncurses ? null, perl ? null, pam, systemd, minimal ? false }:
|
2009-01-06 12:28:45 +03:00
|
|
|
|
2017-06-15 14:05:50 +03:00
|
|
|
let
|
2016-09-05 13:13:31 +03:00
|
|
|
version = lib.concatStringsSep "." ([ majorVersion ]
|
|
|
|
++ lib.optional (patchVersion != "") patchVersion);
|
2017-06-20 04:15:15 +03:00
|
|
|
majorVersion = "2.30";
|
|
|
|
patchVersion = "";
|
2009-01-06 12:28:45 +03:00
|
|
|
|
2017-06-15 14:05:50 +03:00
|
|
|
fstrimPatch = fetchpatch {
|
|
|
|
url = "https://git.kernel.org/pub/scm/utils/util-linux/util-linux.git/patch/?id=155d48f590a50bb5dc265162ff2f9a971daed543";
|
|
|
|
sha256 = "1wj0fj3iwaimr6p8wxg6l2i1hjyrfgcwcxziyxqz8acxba7k6zxh";
|
|
|
|
};
|
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
name = "util-linux-${version}";
|
|
|
|
|
2009-01-06 12:28:45 +03:00
|
|
|
src = fetchurl {
|
2016-08-25 02:02:50 +03:00
|
|
|
url = "mirror://kernel/linux/utils/util-linux/v${majorVersion}/${name}.tar.xz";
|
2017-06-20 04:15:15 +03:00
|
|
|
sha256 = "13d0ax8bcapga8phj2nclx86w57ddqxbr98ajibpzjq6d7zs8262";
|
2009-01-06 12:28:45 +03:00
|
|
|
};
|
|
|
|
|
2017-06-15 14:05:50 +03:00
|
|
|
patches = [
|
|
|
|
./rtcwake-search-PATH-for-shutdown.patch
|
|
|
|
fstrimPatch
|
|
|
|
];
|
2012-08-27 06:53:19 +04:00
|
|
|
|
2016-09-09 01:34:09 +03:00
|
|
|
outputs = [ "bin" "dev" "out" "man" ];
|
2015-01-02 00:23:22 +03:00
|
|
|
|
2014-12-30 12:53:41 +03:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace include/pathnames.h \
|
2017-01-19 17:11:23 +03:00
|
|
|
--replace "/bin/login" "${shadow}/bin/login"
|
2017-04-20 10:38:55 +03:00
|
|
|
substituteInPlace sys-utils/eject.c \
|
|
|
|
--replace "/bin/umount" "$out/bin/umount"
|
2014-12-30 12:53:41 +03:00
|
|
|
'';
|
|
|
|
|
2012-03-07 17:45:06 +04:00
|
|
|
crossAttrs = {
|
|
|
|
# Work around use of `AC_RUN_IFELSE'.
|
|
|
|
preConfigure = "export scanf_cv_type_modifier=ms";
|
|
|
|
};
|
|
|
|
|
2017-05-30 16:39:27 +03:00
|
|
|
preConfigure = lib.optionalString (systemd != null) ''
|
2017-06-07 16:17:40 +03:00
|
|
|
configureFlags+=" --with-systemd --with-systemdsystemunitdir=$bin/lib/systemd/system/"
|
2017-05-30 16:39:27 +03:00
|
|
|
'';
|
|
|
|
|
2010-11-09 01:40:05 +03: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...
|
2017-06-07 16:17:40 +03:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-write"
|
|
|
|
"--enable-last"
|
|
|
|
"--enable-mesg"
|
|
|
|
"--disable-use-tty-group"
|
|
|
|
"--enable-fs-paths-default=/run/wrappers/bin:/var/run/current-system/sw/bin:/sbin"
|
|
|
|
"--disable-makeinstall-setuid" "--disable-makeinstall-chown"
|
|
|
|
]
|
|
|
|
++ lib.optional (ncurses == null) "--without-ncurses";
|
2009-01-06 12:28:45 +03:00
|
|
|
|
2013-06-12 19:12:30 +04:00
|
|
|
makeFlags = "usrbin_execdir=$(bin)/bin usrsbin_execdir=$(bin)/sbin";
|
|
|
|
|
2017-01-19 16:48:00 +03:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2013-01-28 19:55:12 +04:00
|
|
|
buildInputs =
|
2017-01-19 16:48:00 +03:00
|
|
|
[ zlib pam ]
|
2017-06-07 16:17:40 +03:00
|
|
|
++ lib.filter (p: p != null) [ ncurses systemd perl ];
|
2013-01-28 19:55:12 +04:00
|
|
|
|
2014-04-05 22:41:23 +04:00
|
|
|
postInstall = ''
|
2014-08-30 21:11:52 +04:00
|
|
|
rm "$bin/bin/su" # su should be supplied by the su package (shadow)
|
2016-09-05 13:13:31 +03:00
|
|
|
'' + lib.optionalString minimal ''
|
|
|
|
rm -rf $out/share/{locale,doc,bash-completion}
|
2014-04-05 22:41:23 +04:00
|
|
|
'';
|
|
|
|
|
2013-01-28 19:55:12 +04:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-09-05 13:13:31 +03:00
|
|
|
meta = with lib; {
|
2016-04-28 06:19:02 +03:00
|
|
|
homepage = https://www.kernel.org/pub/linux/utils/util-linux/;
|
2013-01-28 19:55:12 +04:00
|
|
|
description = "A set of system utilities for Linux";
|
2014-08-30 21:11:52 +04:00
|
|
|
license = licenses.gpl2; # also contains parts under more permissive licenses
|
2015-04-18 12:00:58 +03:00
|
|
|
platforms = platforms.linux;
|
2015-08-25 01:37:54 +03:00
|
|
|
priority = 6; # lower priority than coreutils ("kill") and shadow ("login" etc.) packages
|
2013-01-28 19:55:12 +04:00
|
|
|
};
|
2009-01-06 12:28:45 +03:00
|
|
|
}
|