nixpkgs/pkgs/os-specific/linux/util-linux/default.nix
Eelco Dolstra cd32e67b2b * Remove makeFlags/installFlags redundancy.
svn path=/nixpkgs/trunk/; revision=7501
2006-12-27 18:26:23 +00:00

20 lines
522 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "util-linux-2.13-pre7";
src = fetchurl {
url = ftp://ftp.nl.kernel.org/pub/linux/utils/util-linux/testing/util-linux-2.13-pre7.tar.bz2;
md5 = "13cdf4b76533e8421dc49de188f85291";
};
configureFlags = "--disable-use-tty-group";
preBuild = "
makeFlagsArray=(usrbinexecdir=$out/bin usrsbinexecdir=$out/sbin datadir=$out/share exampledir=$out/share/getopt)
";
# Hack to get static builds to work.
NIX_CFLAGS_COMPILE = "-DHAVE___PROGNAME=1";
}