2010-12-08 17:58:18 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libuuid }:
|
2009-08-11 21:57:29 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-09-23 10:22:41 +01:00
|
|
|
name = "e2fsprogs-1.42.12";
|
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";
|
2014-09-23 10:22:41 +01:00
|
|
|
sha256 = "0v0qcfyls0dlrjy8gx9m3s2wbkp5z3lbsr5hb7x8kp8f3bclcy71";
|
2009-08-11 21:57:29 +01:00
|
|
|
};
|
|
|
|
|
2010-12-08 17:58:18 +00:00
|
|
|
buildInputs = [ pkgconfig libuuid ];
|
2009-08-11 21:57:29 +01:00
|
|
|
|
2010-03-04 14:44:31 +00:00
|
|
|
crossAttrs = {
|
|
|
|
preConfigure = ''
|
|
|
|
export CC=$crossConfig-gcc
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2009-08-11 21:57:29 +01:00
|
|
|
# libuuid, libblkid, uuidd and fsck are in util-linux-ng (the "libuuid" dependency).
|
2014-02-27 07:28:35 +00:00
|
|
|
configureFlags = "--enable-elf-shlibs --disable-libuuid --disable-libblkid --disable-uuidd --disable-fsck --enable-symlink-install";
|
2009-08-11 21:57:29 +01:00
|
|
|
|
2013-05-11 17:09:05 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2009-08-11 21:57:29 +01:00
|
|
|
preInstall = "installFlagsArray=('LN=ln -s')";
|
2012-09-05 00:04:14 +01:00
|
|
|
|
2009-08-11 21:57:29 +01:00
|
|
|
postInstall = "make install-libs";
|
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
|
|
|
};
|
|
|
|
}
|