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