0a884b25f9
option to set the path to the mount helpers programs (mount.<fstype>) to something other than /sbin. Needed in NixOS to get the mount command to work for NTFS-3G, CIFS, etc. svn path=/nixpkgs/trunk/; revision=12514
57 lines
1.7 KiB
Nix
57 lines
1.7 KiB
Nix
{ stdenv, fetchurl, ncurses ? null
|
|
|
|
, # Build mount/umount only.
|
|
buildMountOnly ? false
|
|
|
|
, # A directory containing mount helpers programs
|
|
# (i.e. `mount.<fstype>') to be used instead of /sbin.
|
|
mountHelpers ? null
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = (if buildMountOnly then "mount-" else "") + "util-linux-2.13-pre7";
|
|
|
|
src = fetchurl {
|
|
url = mirror://kernel/linux/utils/util-linux/testing/util-linux-2.13-pre7.tar.bz2;
|
|
md5 = "13cdf4b76533e8421dc49de188f85291";
|
|
};
|
|
|
|
patches = [
|
|
# Fix for a local root exploit via mount/umount
|
|
# (http://www.gentoo.org/security/en/glsa/glsa-200710-18.xml).
|
|
(fetchurl {
|
|
url = "http://sources.gentoo.org/viewcvs.py/*checkout*/gentoo-x86/sys-apps/util-linux/files/util-linux-2.13-setuid-checks.patch?rev=1.1";
|
|
sha256 = "02ky7ljzqpx8ii3dfmjydw8nnhshpw2inwh6w1vqllz8mhn81jdf";
|
|
})
|
|
];
|
|
|
|
configureFlags = "--disable-use-tty-group";
|
|
|
|
buildInputs = stdenv.lib.optional (ncurses != null) ncurses;
|
|
|
|
inherit mountHelpers;
|
|
|
|
preConfigure = ''
|
|
makeFlagsArray=(usrbinexecdir=$out/bin usrsbinexecdir=$out/sbin datadir=$out/share exampledir=$out/share/getopt)
|
|
if test -n "$mountHelpers"; then
|
|
substituteInPlace mount/mount.c --replace /sbin/mount. $mountHelpers/mount.
|
|
substituteInPlace mount/umount.c --replace /sbin/umount. $mountHelpers/umount.
|
|
fi
|
|
'';
|
|
|
|
buildPhase =
|
|
if buildMountOnly then ''
|
|
make "''${makeFlagsArray[@]}" -C lib
|
|
make "''${makeFlagsArray[@]}" -C mount
|
|
'' else "";
|
|
|
|
installPhase =
|
|
if buildMountOnly then ''
|
|
make "''${makeFlagsArray[@]}" -C lib install
|
|
make "''${makeFlagsArray[@]}" -C mount install
|
|
'' else "";
|
|
|
|
# Hack to get static builds to work.
|
|
NIX_CFLAGS_COMPILE = "-DHAVE___PROGNAME=1";
|
|
}
|