2008-03-06 17:10:01 +01:00
|
|
|
{stdenv, fetchurl}:
|
2004-02-16 15:31:52 +01:00
|
|
|
|
2004-03-29 19:23:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2009-02-02 20:00:20 +01:00
|
|
|
name = "e2fsprogs-1.41.4";
|
2009-01-06 10:16:41 +01:00
|
|
|
|
2004-02-16 15:31:52 +01:00
|
|
|
src = fetchurl {
|
2009-02-02 20:00:20 +01:00
|
|
|
url = mirror://sourceforge/e2fsprogs/e2fsprogs-1.41.4.tar.gz;
|
|
|
|
sha256 = "1p10j04gwr286qc2pjpp72k38nqk2d2n7sslwhvxgb995gp0zh9c";
|
2004-02-16 15:31:52 +01:00
|
|
|
};
|
2009-01-06 10:16:41 +01:00
|
|
|
|
2006-11-24 12:36:57 +01:00
|
|
|
configureFlags =
|
|
|
|
if stdenv ? isDietLibC
|
2009-01-07 00:22:29 +01:00
|
|
|
then "--with-diet-libc"
|
2008-03-06 13:08:19 +01:00
|
|
|
else "--enable-elf-shlibs";
|
2009-01-07 00:22:29 +01:00
|
|
|
|
|
|
|
preBuild = if stdenv ? isDietLibC then ''
|
|
|
|
sed -e 's/-lpthread//' -i Makefile */Makefile */*/Makefile
|
|
|
|
'' else "";
|
2009-01-06 10:16:41 +01:00
|
|
|
|
2006-11-24 12:36:57 +01:00
|
|
|
preInstall = "installFlagsArray=('LN=ln -s')";
|
2009-01-06 10:16:41 +01:00
|
|
|
|
2008-03-07 06:51:59 +01:00
|
|
|
postInstall = "make install-libs";
|
2009-01-06 10:16:41 +01:00
|
|
|
|
2006-11-24 12:36:57 +01:00
|
|
|
NIX_CFLAGS_COMPILE =
|
2007-01-23 14:52:34 +01:00
|
|
|
if stdenv ? isDietLibC then
|
|
|
|
"-UHAVE_SYS_PRCTL_H " +
|
|
|
|
(if stdenv.system == "x86_64-linux" then "-DHAVE_LSEEK64_PROTOTYPE=1 -Dstat64=stat" else "")
|
2009-01-07 00:22:29 +01:00
|
|
|
+ " -lcompat -lpthread "
|
2007-01-23 14:52:34 +01:00
|
|
|
else "";
|
2009-01-06 10:16:41 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://e2fsprogs.sourceforge.net/;
|
|
|
|
description = "Tools for creating and checking ext2/ext3/ext4 filesystems";
|
|
|
|
};
|
2004-02-16 15:31:52 +01:00
|
|
|
}
|