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-03-16 01:15:14 +00:00
|
|
|
name = "e2fsprogs-1.44.0";
|
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-03-16 01:15:14 +00:00
|
|
|
sha256 = "1l8z17zfzhi00f56xl6c4f2g3fi9m4ixlmwpmaihm9y9qz1giaq4";
|
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
|
|
|
|
2018-01-23 17:34:25 +00:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
|
|
|
nativeBuildInputs = [ pkgconfig texinfo ];
|
2018-03-14 22:58:20 +00:00
|
|
|
buildInputs = [ libuuid 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
|
|
|
};
|
|
|
|
}
|