2018-09-24 16:39:35 +01:00
|
|
|
{ stdenv, buildPackages, fetchurl, fetchpatch, pkgconfig, libuuid, gettext, texinfo, perl }:
|
2009-08-11 21:57:29 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-12-29 19:40:36 +00:00
|
|
|
name = "e2fsprogs-1.44.5";
|
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-12-29 19:40:36 +00:00
|
|
|
sha256 = "1k6iwv2bz2a8mcd1gg9kb5jpry7pil5v2h2f9apxax7g4yp1y89f";
|
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
|
|
|
|
2018-08-28 12:45:52 +01:00
|
|
|
# Only use glibc's __GNUC_PREREQ(X,Y) (checks if compiler is gcc version >= X.Y) when using glibc
|
2018-09-24 16:39:35 +01:00
|
|
|
patches = if stdenv.hostPlatform.libc == "glibc" then null
|
|
|
|
else [
|
|
|
|
(fetchpatch {
|
2018-12-31 04:45:46 +00:00
|
|
|
url = "https://raw.githubusercontent.com/void-linux/void-packages/9583597eb3e6e6b33f61dbc615d511ce030bc443/srcpkgs/e2fsprogs/patches/fix-glibcism.patch";
|
|
|
|
sha256 = "1fyml1iwrs412xn2w36ra28am3sq4klrrj60lnf7rysyw069nxk3";
|
2018-09-24 16:39:35 +01:00
|
|
|
extraPrefix = "";
|
|
|
|
})
|
|
|
|
];
|
2018-08-28 12:45:52 +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"
|
2018-08-08 22:33:40 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
checkInputs = [ perl ];
|
|
|
|
doCheck = false; # fails
|
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;
|
2018-11-15 21:52:21 +00:00
|
|
|
platforms = platforms.unix;
|
2017-02-26 09:56:11 +00:00
|
|
|
maintainers = [ maintainers.eelco ];
|
2009-08-11 21:57:29 +01:00
|
|
|
};
|
|
|
|
}
|