2016-03-08 11:57:58 +03:00
|
|
|
{ stdenv, fetchurl, pkgconfig, zlib, ncurses ? null, perl ? null, pam, systemd }:
|
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-08-25 02:02:50 +03:00
|
|
|
version = stdenv.lib.concatStringsSep "." ([ majorVersion ]
|
|
|
|
++ stdenv.lib.optional (patchVersion != "") patchVersion);
|
|
|
|
majorVersion = "2.28";
|
|
|
|
patchVersion = "1";
|
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";
|
|
|
|
sha256 = "03xnaw3c7pavxvvh1vnimcr44hlhhf25whawiyv8dxsflfj4xkiy";
|
2009-01-06 12:28:45 +03:00
|
|
|
};
|
|
|
|
|
2015-05-28 12:19:46 +03:00
|
|
|
patches = [
|
|
|
|
./rtcwake-search-PATH-for-shutdown.patch
|
|
|
|
];
|
2015-04-19 14:29:53 +03:00
|
|
|
|
|
|
|
outputs = [ "bin" "out" "man" ]; # TODO: $bin is kept the first for now
|
|
|
|
# due to lots of ${utillinux}/bin occurences and headers being rather small
|
|
|
|
outputDev = "bin";
|
2012-08-27 06:53:19 +04:00
|
|
|
|
2015-01-02 00:23:22 +03:00
|
|
|
|
2014-12-30 12:53:41 +03:00
|
|
|
#FIXME: make it also work on non-nixos?
|
|
|
|
postPatch = ''
|
|
|
|
# Substituting store paths would create a circular dependency on systemd
|
|
|
|
substituteInPlace include/pathnames.h \
|
|
|
|
--replace "/bin/login" "/run/current-system/sw/bin/login" \
|
|
|
|
--replace "/sbin/shutdown" "/run/current-system/sw/bin/shutdown"
|
|
|
|
'';
|
|
|
|
|
2012-03-07 17:45:06 +04:00
|
|
|
crossAttrs = {
|
|
|
|
# Work around use of `AC_RUN_IFELSE'.
|
|
|
|
preConfigure = "export scanf_cv_type_modifier=ms";
|
|
|
|
};
|
|
|
|
|
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
|
2015-04-01 23:57:06 +03:00
|
|
|
--enable-fs-paths-default=/var/setuid-wrappers:/var/run/current-system/sw/bin:/sbin
|
2009-01-06 12:28:45 +03:00
|
|
|
${if ncurses == null then "--without-ncurses" else ""}
|
2016-02-12 16:26:46 +03:00
|
|
|
${if systemd == null then "" else ''
|
|
|
|
--with-systemd
|
|
|
|
--with-systemdsystemunitdir=$out/lib/systemd/system/
|
|
|
|
''}
|
2009-01-06 12:28:45 +03:00
|
|
|
'';
|
|
|
|
|
2013-06-12 19:12:30 +04:00
|
|
|
makeFlags = "usrbin_execdir=$(bin)/bin usrsbin_execdir=$(bin)/sbin";
|
|
|
|
|
2015-04-19 14:29:53 +03:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2013-01-28 19:55:12 +04:00
|
|
|
buildInputs =
|
|
|
|
[ zlib pam ]
|
|
|
|
++ stdenv.lib.optional (ncurses != null) ncurses
|
2016-02-12 16:26:46 +03:00
|
|
|
++ stdenv.lib.optional (systemd != null) [ systemd pkgconfig ]
|
2013-01-28 19:55:12 +04:00
|
|
|
++ stdenv.lib.optional (perl != null) perl;
|
|
|
|
|
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)
|
2014-04-05 22:41:23 +04:00
|
|
|
'';
|
|
|
|
|
2013-01-28 19:55:12 +04:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-08-30 21:11:52 +04:00
|
|
|
meta = with stdenv.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
|
|
|
}
|