2017-12-10 06:37:34 +00:00
|
|
|
{ stdenv, buildPackages, fetchurl, pkgconfig, libuuid, gettext, texinfo }:
|
2009-08-11 21:57:29 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-01-10 17:19:12 +00:00
|
|
|
name = "e2fsprogs-1.43.8";
|
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";
|
2018-01-10 17:19:12 +00:00
|
|
|
sha256 = "1pn33rap3lcjm3gx07pmgyhx4j634gja63phmi4g5dq8yj0z8ciz";
|
2009-08-11 21:57:29 +01:00
|
|
|
};
|
|
|
|
|
2017-07-11 12:10:57 +01:00
|
|
|
outputs = [ "bin" "dev" "out" "man" "info" ];
|
2014-08-30 18:11:52 +01:00
|
|
|
|
2017-12-10 06:37:34 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig texinfo buildPackages.stdenv.cc ];
|
2017-02-26 10:01:44 +00:00
|
|
|
buildInputs = [ libuuid ] ++ stdenv.lib.optional (!stdenv.isLinux) gettext;
|
2009-08-11 21:57:29 +01:00
|
|
|
|
2017-02-26 09:56:11 +00:00
|
|
|
configureFlags =
|
|
|
|
if stdenv.isLinux then [
|
|
|
|
"--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"
|
|
|
|
] else [
|
|
|
|
"--enable-libuuid --disable-e2initrd-helper"
|
|
|
|
]
|
2017-02-26 09:49:56 +00:00
|
|
|
;
|
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
|
|
|
|
2017-02-26 09:56:11 +00:00
|
|
|
meta = with stdenv.lib; {
|
2009-08-11 21:57:29 +01:00
|
|
|
homepage = http://e2fsprogs.sourceforge.net/;
|
|
|
|
description = "Tools for creating and checking ext2/ext3/ext4 filesystems";
|
2017-02-26 09:56:11 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.eelco ];
|
2009-08-11 21:57:29 +01:00
|
|
|
};
|
|
|
|
}
|