nixpkgs/pkgs/tools/filesystems/e2fsprogs/default.nix
Eelco Dolstra 80ebb879cd Revert "e2fsprogs: 1.14.12 -> 1.14.13"
This reverts commit 3f4f90b58b.
2015-06-04 14:54:48 +02:00

35 lines
968 B
Nix

{ stdenv, fetchurl, pkgconfig, libuuid }:
stdenv.mkDerivation rec {
name = "e2fsprogs-1.42.12";
src = fetchurl {
url = "mirror://sourceforge/e2fsprogs/${name}.tar.gz";
sha256 = "0v0qcfyls0dlrjy8gx9m3s2wbkp5z3lbsr5hb7x8kp8f3bclcy71";
};
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 --enable-symlink-install";
enableParallelBuilding = true;
preInstall = "installFlagsArray=('LN=ln -s')";
postInstall = "make install-libs";
meta = {
homepage = http://e2fsprogs.sourceforge.net/;
description = "Tools for creating and checking ext2/ext3/ext4 filesystems";
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.eelco ];
};
}