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
|
|
|
|
2009-08-12 00:57:29 +04:00
|
|
|
stdenv.mkDerivation rec {
|
2016-04-28 06:19:02 +03:00
|
|
|
name = "util-linux-${version}";
|
2016-09-05 13:13:31 +03:00
|
|
|
version = lib.concatStringsSep "." ([ majorVersion ]
|
|
|
|
++ lib.optional (patchVersion != "") patchVersion);
|
2017-01-14 20:57:58 +03:00
|
|
|
majorVersion = "2.29";
|
2017-02-23 16:57:50 +03:00
|
|
|
patchVersion = "2";
|
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-02-23 16:57:50 +03:00
|
|
|
sha256 = "1qz81w8vzrmy8xn9yx7ls4amkbgwx6vr62pl6kv9g7r0g3ba9kmc";
|
2009-01-06 12:28:45 +03:00
|
|
|
};
|
|
|
|
|
2017-01-19 16:48:00 +03:00
|
|
|
patches = [ ./rtcwake-search-PATH-for-shutdown.patch ];
|
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) ''
|
|
|
|
configureFlags+="--with-systemd --with-systemdsystemunitdir=$bin/lib/systemd/system/"
|
|
|
|
'';
|
|
|
|
|
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...
|
2009-01-06 12:28:45 +03:00
|
|
|
configureFlags = ''
|
2010-04-22 00:47:15 +04:00
|
|
|
--enable-write
|
2013-01-28 19:55:12 +04:00
|
|
|
--enable-last
|
|
|
|
--enable-mesg
|
|
|
|
--disable-use-tty-group
|
2017-01-29 13:11:01 +03:00
|
|
|
--enable-fs-paths-default=/run/wrappers/bin:/var/run/current-system/sw/bin:/sbin
|
2009-01-06 12:28:45 +03:00
|
|
|
${if ncurses == null then "--without-ncurses" else ""}
|
|
|
|
'';
|
|
|
|
|
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 ]
|
2016-09-05 13:13:31 +03:00
|
|
|
++ lib.optional (ncurses != null) ncurses
|
2016-09-05 19:59:00 +03:00
|
|
|
++ lib.optional (systemd != null) systemd
|
2016-09-05 13:13:31 +03:00
|
|
|
++ lib.optional (perl != null) 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
|
|
|
}
|