Files
nixpkgs/pkgs/os-specific/linux/util-linux/default.nix
T

77 lines
2.5 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkgconfig, zlib, shadow
2018-07-23 17:03:39 -04:00
, ncurses ? null, perl ? null, pam, systemd ? null, minimal ? false }:
2017-06-15 14:05:50 +03:00
let
2016-09-05 12:13:31 +02:00
version = lib.concatStringsSep "." ([ majorVersion ]
++ lib.optional (patchVersion != "") patchVersion);
2018-03-25 16:14:48 -05:00
majorVersion = "2.32";
2018-07-24 16:04:48 +02:00
patchVersion = "1";
2017-06-15 14:05:50 +03:00
in stdenv.mkDerivation rec {
name = "util-linux-${version}";
src = fetchurl {
2016-08-25 01:02:50 +02:00
url = "mirror://kernel/linux/utils/util-linux/v${majorVersion}/${name}.tar.xz";
2018-07-24 16:04:48 +02:00
sha256 = "1ck7d8srw5szpjq7v0gpmjahnjs6wgqzm311ki4gazww6xx71rl6";
};
2017-06-15 14:05:50 +03:00
patches = [
./rtcwake-search-PATH-for-shutdown.patch
];
2012-08-26 22:53:19 -04:00
2016-09-09 01:34:09 +03:00
outputs = [ "bin" "dev" "out" "man" ];
postPatch = ''
2018-08-08 21:28:37 +00:00
patchShebangs tests/run.sh
substituteInPlace include/pathnames.h \
--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"
'';
# !!! 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...
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.withFeature (ncurses != null) "ncursesw")
2018-07-23 17:03:39 -04:00
(lib.withFeature (systemd != null) "systemd")
(lib.withFeatureAs (systemd != null)
2018-08-13 13:08:08 +02:00
"systemdsystemunitdir" "$(bin)/lib/systemd/system/")
2018-07-23 17:03:39 -04:00
] ++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform)
2018-07-23 17:03:39 -04:00
"scanf_cv_type_modifier=ms"
;
2013-06-12 17:12:30 +02:00
makeFlags = "usrbin_execdir=$(bin)/bin usrsbin_execdir=$(bin)/sbin";
nativeBuildInputs = [ pkgconfig ];
2013-01-28 16:55:12 +01:00
buildInputs =
[ zlib pam ]
++ lib.filter (p: p != null) [ ncurses systemd perl ];
2013-01-28 16:55:12 +01:00
2018-08-08 21:28:37 +00:00
doCheck = false; # "For development purpose only. Don't execute on production system!"
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}
'';
2013-01-28 16:55:12 +01:00
enableParallelBuilding = true;
2016-09-05 12:13:31 +02:00
meta = with lib; {
2016-04-27 23:19:02 -04: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;
priority = 6; # lower priority than coreutils ("kill") and shadow ("login" etc.) packages
2013-01-28 16:55:12 +01:00
};
}