2013-01-28 19:55:12 +04:00
|
|
|
{ stdenv, fetchurl, zlib, ncurses ? null, perl ? null, pam }:
|
2009-01-06 12:28:45 +03:00
|
|
|
|
2009-08-12 00:57:29 +04:00
|
|
|
stdenv.mkDerivation rec {
|
2014-08-30 21:11:52 +04:00
|
|
|
name = "util-linux-2.25";
|
2009-01-06 12:28:45 +03:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-08-30 21:11:52 +04:00
|
|
|
url = "http://www.kernel.org/pub/linux/utils/util-linux/v2.25/${name}.tar.xz";
|
|
|
|
sha256 = "02lqww6ck4p47wzc883zdjb1gnwm59hsay4hd5i55mfdv25mmfj7";
|
2009-01-06 12:28:45 +03:00
|
|
|
};
|
|
|
|
|
2014-08-30 21:11:52 +04:00
|
|
|
outputs = [ "dev" "out" "bin" ]; # ToDo: problems with e2fsprogs
|
2012-08-27 06:53:19 +04:00
|
|
|
|
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
|
|
|
|
--enable-ddate
|
|
|
|
--disable-use-tty-group
|
2012-03-10 23:02:07 +04:00
|
|
|
--enable-fs-paths-default=/var/setuid-wrappers:/var/run/current-system/sw/sbin:/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";
|
|
|
|
|
2013-01-28 19:55:12 +04:00
|
|
|
buildInputs =
|
|
|
|
[ zlib pam ]
|
|
|
|
++ stdenv.lib.optional (ncurses != null) ncurses
|
|
|
|
++ stdenv.lib.optional (perl != null) perl;
|
|
|
|
|
2014-04-05 22:41:23 +04:00
|
|
|
postInstall = ''
|
2014-08-30 21:11:52 +04:00
|
|
|
sed "s,$out$out,$out,g" -i "$dev"/lib/pkgconfig/*.pc
|
|
|
|
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; {
|
2013-01-28 19:55:12 +04:00
|
|
|
homepage = http://www.kernel.org/pub/linux/utils/util-linux/;
|
|
|
|
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
|
|
|
|
platforms = platforms.all;
|
2013-01-28 19:55:12 +04:00
|
|
|
};
|
2009-01-06 12:28:45 +03:00
|
|
|
}
|
2014-08-30 21:11:52 +04:00
|
|
|
|