2015-04-19 12:29:53 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libuuid }:
|
2009-08-11 21:57:29 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-11-13 20:58:50 +00:00
|
|
|
name = "e2fsprogs-1.43.3";
|
2009-09-25 21:53:21 +01:00
|
|
|
|
2009-08-11 21:57:29 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/e2fsprogs/${name}.tar.gz";
|
2016-11-13 20:58:50 +00:00
|
|
|
sha256 = "09wrn60rlqdgjkmm09yv32zxdjba2pd4ya3704bhywyln2xz33nf";
|
2009-08-11 21:57:29 +01:00
|
|
|
};
|
|
|
|
|
2016-09-10 17:05:58 +01:00
|
|
|
outputs = [ "bin" "dev" "out" "man" ];
|
2014-08-30 18:11:52 +01:00
|
|
|
|
2015-04-19 12:29:53 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ libuuid ];
|
2009-08-11 21:57:29 +01:00
|
|
|
|
2010-03-04 14:44:31 +00:00
|
|
|
crossAttrs = {
|
|
|
|
preConfigure = ''
|
|
|
|
export CC=$crossConfig-gcc
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2015-04-19 12:29:53 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-elf-shlibs" "--enable-symlink-install" "--enable-relative-symlinks"
|
|
|
|
# libuuid, libblkid, uuidd and fsck are in util-linux-ng (the "libuuid" dependency).
|
|
|
|
"--disable-libuuid" "--disable-uuidd" "--disable-libblkid" "--disable-fsck"
|
|
|
|
];
|
2009-08-11 21:57:29 +01:00
|
|
|
|
2015-04-19 12:29:53 +01:00
|
|
|
# hacky way to make it install *.pc
|
|
|
|
postInstall = ''
|
|
|
|
make install-libs
|
|
|
|
rm "$out"/lib/*.a
|
|
|
|
'';
|
2012-09-05 00:04:14 +01:00
|
|
|
|
2015-04-19 12:29:53 +01:00
|
|
|
enableParallelBuilding = true;
|
2012-09-05 00:04:14 +01:00
|
|
|
|
2009-08-11 21:57:29 +01:00
|
|
|
meta = {
|
|
|
|
homepage = http://e2fsprogs.sourceforge.net/;
|
|
|
|
description = "Tools for creating and checking ext2/ext3/ext4 filesystems";
|
2013-05-11 17:09:05 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
2009-08-11 21:57:29 +01:00
|
|
|
};
|
|
|
|
}
|