nixpkgs/pkgs/tools/filesystems/e2fsprogs/default.nix

31 lines
812 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, libuuid }:
stdenv.mkDerivation rec {
2012-09-05 01:04:14 +02:00
name = "e2fsprogs-1.42.5";
src = fetchurl {
url = "mirror://sourceforge/e2fsprogs/${name}.tar.gz";
2012-09-05 01:04:14 +02:00
sha256 = "1kki3367961377wz2n6kva8q0wjjk6qhxmhp2dp3ar3lxgcamvbn";
};
buildInputs = [ pkgconfig libuuid ];
crossAttrs = {
preConfigure = ''
export CC=$crossConfig-gcc
'';
};
# libuuid, libblkid, uuidd and fsck are in util-linux-ng (the "libuuid" dependency).
configureFlags = "--enable-elf-shlibs --disable-libuuid --disable-libblkid --disable-uuidd --disable-fsck";
preInstall = "installFlagsArray=('LN=ln -s')";
2012-09-05 01:04:14 +02:00
postInstall = "make install-libs";
2012-09-05 01:04:14 +02:00
meta = {
homepage = http://e2fsprogs.sourceforge.net/;
description = "Tools for creating and checking ext2/ext3/ext4 filesystems";
};
}