85978b1efa
so that we don't have to rebuild everything that depends on libuuid (such as all X programs). svn path=/nixpkgs/trunk/; revision=15964
36 lines
936 B
Nix
36 lines
936 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "e2fsprogs-1.41.6";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/e2fsprogs/${name}.tar.gz";
|
|
sha256 = "0i5ldfgx3rccr4d59fgxc1zcv33i1jm4ggb3nqyvr5wik5qmv5sq";
|
|
};
|
|
|
|
configureFlags =
|
|
if stdenv ? isDietLibC
|
|
then "--with-diet-libc"
|
|
else "--enable-elf-shlibs";
|
|
|
|
preBuild = if stdenv ? isDietLibC then ''
|
|
sed -e 's/-lpthread//' -i Makefile */Makefile */*/Makefile
|
|
'' else "";
|
|
|
|
preInstall = "installFlagsArray=('LN=ln -s')";
|
|
|
|
postInstall = "make install-libs";
|
|
|
|
NIX_CFLAGS_COMPILE =
|
|
if stdenv ? isDietLibC then
|
|
"-UHAVE_SYS_PRCTL_H " +
|
|
(if stdenv.system == "x86_64-linux" then "-DHAVE_LSEEK64_PROTOTYPE=1 -Dstat64=stat" else "")
|
|
+ " -lcompat -lpthread "
|
|
else "";
|
|
|
|
meta = {
|
|
homepage = http://e2fsprogs.sourceforge.net/;
|
|
description = "Tools for creating and checking ext2/ext3/ext4 filesystems";
|
|
};
|
|
}
|