2022-05-14 16:40:32 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, zlib, shadow
|
|
|
|
, capabilitiesSupport ? true
|
|
|
|
, libcap_ng
|
2022-02-20 05:51:01 +00:00
|
|
|
, ncursesSupport ? true
|
2022-05-14 16:40:32 +00:00
|
|
|
, ncurses
|
|
|
|
, pamSupport ? true
|
|
|
|
, pam
|
2022-04-24 12:00:00 +00:00
|
|
|
, systemdSupport ? stdenv.isLinux && !stdenv.hostPlatform.isStatic
|
2022-02-20 05:51:01 +00:00
|
|
|
, systemd
|
2021-10-05 16:13:24 +00:00
|
|
|
, nlsSupport ? true
|
2022-06-27 05:12:58 +00:00
|
|
|
, translateManpages ? true
|
|
|
|
, po4a
|
2021-10-05 17:06:23 +00:00
|
|
|
}:
|
2009-01-06 09:28:45 +00:00
|
|
|
|
2019-12-25 04:10:48 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2022-02-20 05:51:01 +00:00
|
|
|
pname = "util-linux" + lib.optionalString (!nlsSupport && !ncursesSupport && !systemdSupport) "-minimal";
|
2022-06-27 05:12:58 +00:00
|
|
|
version = "2.38";
|
2017-06-15 11:05:50 +00:00
|
|
|
|
2009-01-06 09:28:45 +00:00
|
|
|
src = fetchurl {
|
2022-03-01 13:21:26 +00:00
|
|
|
url = "mirror://kernel/linux/utils/util-linux/v${lib.versions.majorMinor version}/util-linux-${version}.tar.xz";
|
2022-06-27 05:12:58 +00:00
|
|
|
hash = "sha256-bREcvk1VszbbLx++/7xluJkIcEwBE2Nx0yqpvsNz62Q=";
|
2009-01-06 09:28:45 +00:00
|
|
|
};
|
|
|
|
|
2017-06-15 11:05:50 +00:00
|
|
|
patches = [
|
|
|
|
./rtcwake-search-PATH-for-shutdown.patch
|
|
|
|
];
|
2012-08-27 02:53:19 +00:00
|
|
|
|
2021-10-05 16:13:24 +00:00
|
|
|
outputs = [ "bin" "dev" "out" "lib" "man" ];
|
2021-12-08 04:37:36 +00:00
|
|
|
separateDebugInfo = true;
|
2015-01-01 21:23:22 +00:00
|
|
|
|
2014-12-30 09:53:41 +00:00
|
|
|
postPatch = ''
|
2018-08-08 21:28:37 +00: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 07:38:55 +00:00
|
|
|
substituteInPlace sys-utils/eject.c \
|
2020-02-29 17:43:41 +00:00
|
|
|
--replace "/bin/umount" "$bin/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 13:17:40 +00:00
|
|
|
configureFlags = [
|
2021-10-05 16:08:34 +00:00
|
|
|
"--localstatedir=/var"
|
2017-06-07 13:17:40 +00:00
|
|
|
"--enable-write"
|
|
|
|
"--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 13:17:40 +00:00
|
|
|
"--disable-makeinstall-setuid" "--disable-makeinstall-chown"
|
2019-05-06 03:37:28 +00:00
|
|
|
"--disable-su" # provided by shadow
|
2021-10-05 17:06:23 +00:00
|
|
|
(lib.enableFeature nlsSupport "nls")
|
2022-02-20 05:51:01 +00:00
|
|
|
(lib.withFeature ncursesSupport "ncursesw")
|
|
|
|
(lib.withFeature systemdSupport "systemd")
|
|
|
|
(lib.withFeatureAs systemdSupport
|
2019-05-06 03:37:28 +00:00
|
|
|
"systemdsystemunitdir" "${placeholder "bin"}/lib/systemd/system/")
|
2022-06-27 05:12:58 +00:00
|
|
|
(lib.enableFeature translateManpages "poman")
|
2021-10-05 16:13:24 +00:00
|
|
|
"SYSCONFSTATICDIR=${placeholder "lib"}/lib"
|
2018-07-23 21:03:39 +00:00
|
|
|
] ++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform)
|
2018-07-23 21:03:39 +00:00
|
|
|
"scanf_cv_type_modifier=ms"
|
|
|
|
;
|
2009-01-06 09:28:45 +00:00
|
|
|
|
2019-05-06 03:37:28 +00:00
|
|
|
makeFlags = [
|
|
|
|
"usrbin_execdir=${placeholder "bin"}/bin"
|
2021-10-05 16:13:24 +00:00
|
|
|
"usrlib_execdir=${placeholder "lib"}/lib"
|
2019-05-06 03:37:28 +00:00
|
|
|
"usrsbin_execdir=${placeholder "bin"}/sbin"
|
|
|
|
];
|
2013-06-12 15:12:30 +00:00
|
|
|
|
2022-06-27 05:12:58 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ]
|
|
|
|
++ lib.optionals translateManpages [ po4a ];
|
|
|
|
|
2022-05-14 16:40:32 +00:00
|
|
|
buildInputs = [ zlib ]
|
|
|
|
++ lib.optionals pamSupport [ pam ]
|
|
|
|
++ lib.optionals capabilitiesSupport [ libcap_ng ]
|
2022-02-20 05:51:01 +00:00
|
|
|
++ lib.optionals ncursesSupport [ ncurses ]
|
|
|
|
++ lib.optionals systemdSupport [ systemd ];
|
2013-01-28 15:55:12 +00:00
|
|
|
|
2018-08-08 21:28:37 +00:00
|
|
|
doCheck = false; # "For development purpose only. Don't execute on production system!"
|
|
|
|
|
2013-01-28 15:55:12 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-09-05 10:13:31 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00: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";
|
2021-03-27 00:27:03 +00:00
|
|
|
changelog = "https://mirrors.edge.kernel.org/pub/linux/utils/util-linux/v${lib.versions.majorMinor version}/v${version}-ReleaseNotes";
|
2021-04-03 19:40:46 +00:00
|
|
|
# https://git.kernel.org/pub/scm/utils/util-linux/util-linux.git/tree/README.licensing
|
|
|
|
license = with licenses; [ gpl2Only gpl2Plus gpl3Plus lgpl21Plus bsd3 bsdOriginalUC publicDomain ];
|
2015-04-18 09:00:58 +00:00
|
|
|
platforms = platforms.linux;
|
2015-08-24 22:37:54 +00: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
|
|
|
}
|