25 lines
728 B
Nix
25 lines
728 B
Nix
|
{stdenv, fetchurl, pkgconfig, libuuid}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "e2fsprogs-1.41.8";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "mirror://sourceforge/e2fsprogs/${name}.tar.gz";
|
||
|
sha256 = "009qwd0ig9nrr19gmd9vg73l0ay1xrdlcn8pqrvd2w593hl9yb3q";
|
||
|
};
|
||
|
|
||
|
buildInputs = [pkgconfig libuuid];
|
||
|
|
||
|
# 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')";
|
||
|
|
||
|
postInstall = "make install-libs";
|
||
|
|
||
|
meta = {
|
||
|
homepage = http://e2fsprogs.sourceforge.net/;
|
||
|
description = "Tools for creating and checking ext2/ext3/ext4 filesystems";
|
||
|
};
|
||
|
}
|