2013-01-28 19:55:12 +04:00
|
|
|
{ stdenv, fetchurl, zlib, ncurses ? null, perl ? null, pam }:
|
2014-04-16 18:29:38 +04:00
|
|
|
|
2009-08-12 00:57:29 +04:00
|
|
|
stdenv.mkDerivation rec {
|
2014-12-17 15:47:27 +03:00
|
|
|
name = "util-linux-2.25.2";
|
2009-01-06 12:28:45 +03:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-09-16 19:53:20 +04:00
|
|
|
url = "mirror://kernel/linux/utils/util-linux/v2.25/${name}.tar.xz";
|
2014-12-17 15:47:27 +03:00
|
|
|
sha256 = "e0457f715b73f4a349e1acb08cb410bf0edc9a74a3f75c357070f31f70e33cd6";
|
2009-01-06 12:28:45 +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";
|
|
|
|
};
|
|
|
|
|
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-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 = ''
|
|
|
|
rm $out/bin/su # su should be supplied by the su package (shadow)
|
|
|
|
'';
|
|
|
|
|
2013-01-28 19:55:12 +04:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.kernel.org/pub/linux/utils/util-linux/;
|
|
|
|
description = "A set of system utilities for Linux";
|
|
|
|
};
|
2009-01-06 12:28:45 +03:00
|
|
|
}
|