2018-07-21 02:44:44 +02:00
|
|
|
{ lib, stdenv, fetchurl, pkgconfig, zlib, shadow
|
2018-07-23 23:03:39 +02:00
|
|
|
, ncurses ? null, perl ? null, pam, systemd ? null, minimal ? false }:
|
2009-01-06 10:28:45 +01:00
|
|
|
|
2019-12-25 05:10:48 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-13 23:52:01 +02:00
|
|
|
pname = "util-linux";
|
2020-03-09 05:45:12 +01:00
|
|
|
version = "2.35.1";
|
2017-06-15 13:05:50 +02:00
|
|
|
|
2009-01-06 10:28:45 +01:00
|
|
|
src = fetchurl {
|
2019-12-25 05:10:48 +01:00
|
|
|
url = "mirror://kernel/linux/utils/util-linux/v${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2020-03-09 05:45:12 +01:00
|
|
|
sha256 = "1yfpy6bkab4jw61mpx48gfy24yrqp4a7arvpis8csrkk53fkxpnr";
|
2009-01-06 10:28:45 +01:00
|
|
|
};
|
|
|
|
|
2017-06-15 13:05:50 +02:00
|
|
|
patches = [
|
|
|
|
./rtcwake-search-PATH-for-shutdown.patch
|
|
|
|
];
|
2012-08-27 04:53:19 +02:00
|
|
|
|
2016-09-09 00:34:09 +02:00
|
|
|
outputs = [ "bin" "dev" "out" "man" ];
|
2015-01-01 22:23:22 +01:00
|
|
|
|
2014-12-30 10:53:41 +01:00
|
|
|
postPatch = ''
|
2018-08-08 23:28:37 +02:00
|
|
|
patchShebangs tests/run.sh
|
|
|
|
|
2014-12-30 10:53:41 +01:00
|
|
|
substituteInPlace include/pathnames.h \
|
2017-01-19 15:11:23 +01:00
|
|
|
--replace "/bin/login" "${shadow}/bin/login"
|
2017-04-20 09:38:55 +02:00
|
|
|
substituteInPlace sys-utils/eject.c \
|
2020-02-29 18:43:41 +01:00
|
|
|
--replace "/bin/umount" "$bin/bin/umount"
|
2014-12-30 10:53:41 +01:00
|
|
|
'';
|
|
|
|
|
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...
|
2017-06-07 15:17:40 +02:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-write"
|
|
|
|
"--enable-last"
|
|
|
|
"--enable-mesg"
|
|
|
|
"--disable-use-tty-group"
|
2019-03-24 20:47:44 +01:00
|
|
|
"--enable-fs-paths-default=/run/wrappers/bin:/run/current-system/sw/bin:/sbin"
|
2017-06-07 15:17:40 +02:00
|
|
|
"--disable-makeinstall-setuid" "--disable-makeinstall-chown"
|
2019-05-06 05:37:28 +02:00
|
|
|
"--disable-su" # provided by shadow
|
2018-08-08 03:05:57 +02:00
|
|
|
(lib.withFeature (ncurses != null) "ncursesw")
|
2018-07-23 23:03:39 +02:00
|
|
|
(lib.withFeature (systemd != null) "systemd")
|
|
|
|
(lib.withFeatureAs (systemd != null)
|
2019-05-06 05:37:28 +02:00
|
|
|
"systemdsystemunitdir" "${placeholder "bin"}/lib/systemd/system/")
|
2018-07-23 23:03:39 +02:00
|
|
|
] ++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform)
|
2018-07-23 23:03:39 +02:00
|
|
|
"scanf_cv_type_modifier=ms"
|
|
|
|
;
|
2009-01-06 10:28:45 +01:00
|
|
|
|
2019-05-06 05:37:28 +02:00
|
|
|
makeFlags = [
|
|
|
|
"usrbin_execdir=${placeholder "bin"}/bin"
|
|
|
|
"usrsbin_execdir=${placeholder "bin"}/sbin"
|
|
|
|
];
|
2013-06-12 17:12:30 +02:00
|
|
|
|
2017-01-19 14:48:00 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2013-01-28 16:55:12 +01:00
|
|
|
buildInputs =
|
2017-01-19 14:48:00 +01:00
|
|
|
[ zlib pam ]
|
2017-06-07 15:17:40 +02:00
|
|
|
++ lib.filter (p: p != null) [ ncurses systemd perl ];
|
2013-01-28 16:55:12 +01:00
|
|
|
|
2018-08-08 23:28:37 +02:00
|
|
|
doCheck = false; # "For development purpose only. Don't execute on production system!"
|
|
|
|
|
2019-05-06 05:37:28 +02:00
|
|
|
postInstall = lib.optionalString minimal ''
|
2016-09-05 12:13:31 +02:00
|
|
|
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; {
|
2020-04-01 03:11:51 +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
|
|
|
}
|