nixpkgs/pkgs/os-specific/linux/e2fsprogs/default.nix
Eelco Dolstra 0618e2cd68 * e2fsprogs 1.41.4.
svn path=/nixpkgs/trunk/; revision=13962
2009-02-02 19:00:20 +00:00

36 lines
939 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "e2fsprogs-1.41.4";
src = fetchurl {
url = mirror://sourceforge/e2fsprogs/e2fsprogs-1.41.4.tar.gz;
sha256 = "1p10j04gwr286qc2pjpp72k38nqk2d2n7sslwhvxgb995gp0zh9c";
};
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";
};
}