37 lines
1 KiB
Nix
37 lines
1 KiB
Nix
{ stdenv, fetchurl, autoreconfHook, gettext, pkgconfig, libuuid }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "e2fsprogs-1.42.12";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/e2fsprogs/${name}.tar.gz";
|
|
sha256 = "0v0qcfyls0dlrjy8gx9m3s2wbkp5z3lbsr5hb7x8kp8f3bclcy71";
|
|
};
|
|
|
|
outputs = [ "dev" "out" "bin" "man" ];
|
|
|
|
buildInputs = [ pkgconfig /*libuuid*/ ];
|
|
|
|
crossAttrs = {
|
|
preConfigure = ''
|
|
export CC=$crossConfig-gcc
|
|
'';
|
|
};
|
|
|
|
# libuuid, libblkid, uuidd and fsck are in util-linux-ng (the "libuuid" dependency).
|
|
# ToDo: failed with shared uuid and blkid
|
|
configureFlags = "--enable-elf-shlibs --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 ];
|
|
};
|
|
}
|