2016-03-08 09:57:58 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, zlib, ncurses ? null, perl ? null, pam, systemd }:
|
2009-01-06 10:28:45 +01:00
|
|
|
|
2009-08-11 22:57:29 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2016-04-28 05:19:02 +02:00
|
|
|
name = "util-linux-${version}";
|
2016-08-25 01:02:50 +02:00
|
|
|
version = stdenv.lib.concatStringsSep "." ([ majorVersion ]
|
|
|
|
++ stdenv.lib.optional (patchVersion != "") patchVersion);
|
|
|
|
majorVersion = "2.28";
|
|
|
|
patchVersion = "1";
|
2009-01-06 10:28:45 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-08-25 01:02:50 +02:00
|
|
|
url = "mirror://kernel/linux/utils/util-linux/v${majorVersion}/${name}.tar.xz";
|
|
|
|
sha256 = "03xnaw3c7pavxvvh1vnimcr44hlhhf25whawiyv8dxsflfj4xkiy";
|
2009-01-06 10:28:45 +01:00
|
|
|
};
|
|
|
|
|
2015-05-28 11:19:46 +02:00
|
|
|
patches = [
|
|
|
|
./rtcwake-search-PATH-for-shutdown.patch
|
|
|
|
];
|
2015-04-19 13:29:53 +02: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 04:53:19 +02:00
|
|
|
|
2015-01-01 22:23:22 +01:00
|
|
|
|
2014-12-30 10:53:41 +01: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 14:45:06 +01:00
|
|
|
crossAttrs = {
|
|
|
|
# Work around use of `AC_RUN_IFELSE'.
|
|
|
|
preConfigure = "export scanf_cv_type_modifier=ms";
|
|
|
|
};
|
|
|
|
|
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...
|
2009-01-06 10:28:45 +01:00
|
|
|
configureFlags = ''
|
2010-04-21 22:47:15 +02:00
|
|
|
--enable-write
|
2013-01-28 16:55:12 +01:00
|
|
|
--enable-last
|
|
|
|
--enable-mesg
|
|
|
|
--disable-use-tty-group
|
2015-04-01 22:57:06 +02:00
|
|
|
--enable-fs-paths-default=/var/setuid-wrappers:/var/run/current-system/sw/bin:/sbin
|
2009-01-06 10:28:45 +01:00
|
|
|
${if ncurses == null then "--without-ncurses" else ""}
|
2016-02-12 14:26:46 +01:00
|
|
|
${if systemd == null then "" else ''
|
|
|
|
--with-systemd
|
|
|
|
--with-systemdsystemunitdir=$out/lib/systemd/system/
|
|
|
|
''}
|
2009-01-06 10:28:45 +01:00
|
|
|
'';
|
|
|
|
|
2013-06-12 17:12:30 +02:00
|
|
|
makeFlags = "usrbin_execdir=$(bin)/bin usrsbin_execdir=$(bin)/sbin";
|
|
|
|
|
2015-04-19 13:29:53 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2013-01-28 16:55:12 +01:00
|
|
|
buildInputs =
|
|
|
|
[ zlib pam ]
|
|
|
|
++ stdenv.lib.optional (ncurses != null) ncurses
|
2016-02-12 14:26:46 +01:00
|
|
|
++ stdenv.lib.optional (systemd != null) [ systemd pkgconfig ]
|
2013-01-28 16:55:12 +01:00
|
|
|
++ stdenv.lib.optional (perl != null) perl;
|
|
|
|
|
2014-04-05 20:41:23 +02:00
|
|
|
postInstall = ''
|
2014-08-30 19:11:52 +02:00
|
|
|
rm "$bin/bin/su" # su should be supplied by the su package (shadow)
|
2014-04-05 20:41:23 +02:00
|
|
|
'';
|
|
|
|
|
2013-01-28 16:55:12 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-08-30 19:11:52 +02:00
|
|
|
meta = with stdenv.lib; {
|
2016-04-28 05:19:02 +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
|
|
|
}
|