2019-03-14 15:42:23 +00:00
|
|
|
{ stdenv, buildPackages, fetchurl, fetchpatch, pkgconfig, libuuid, gettext, texinfo }:
|
2009-08-11 21:57:29 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-03-10 08:53:25 +00:00
|
|
|
pname = "e2fsprogs";
|
2019-09-26 14:36:31 +01:00
|
|
|
version = "1.45.4";
|
2009-09-25 21:53:21 +01:00
|
|
|
|
2009-08-11 21:57:29 +01:00
|
|
|
src = fetchurl {
|
2019-03-10 08:53:25 +00:00
|
|
|
url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz";
|
2019-09-26 14:36:31 +01:00
|
|
|
sha256 = "0jsclghxfzj9qmdd3qqk0gdmkrgjv2gakf8qz9dba37qkj1nk776";
|
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";
|
2019-05-17 14:17:21 +01:00
|
|
|
sha256 = "1gfcsr0i3q8q2f0lqza8na0iy4l4p3cbii51ds6zmj0y4hz2dwhb";
|
|
|
|
excludes = [ "lib/ext2fs/hashmap.h" ];
|
2018-09-24 16:39:35 +01:00
|
|
|
extraPrefix = "";
|
|
|
|
})
|
|
|
|
];
|
2018-08-28 12:45:52 +01:00
|
|
|
|
2019-08-31 09:27:35 +01:00
|
|
|
postPatch = ''
|
|
|
|
# Remove six failing tests
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/65471
|
|
|
|
for test in m_image_mmp m_mmp m_mmp_bad_csum m_mmp_bad_magic t_mmp_1on t_mmp_2off; do
|
|
|
|
rm -r "tests/$test"
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2017-02-26 09:56:11 +00:00
|
|
|
configureFlags =
|
|
|
|
if stdenv.isLinux then [
|
2019-05-22 11:22:36 +01:00
|
|
|
"--enable-elf-shlibs"
|
|
|
|
"--enable-symlink-install"
|
|
|
|
"--enable-relative-symlinks"
|
|
|
|
"--with-crond-dir=no"
|
|
|
|
# fsck, libblkid, libuuid and uuidd are in util-linux-ng (the "libuuid" dependency)
|
|
|
|
"--disable-fsck"
|
|
|
|
"--disable-libblkid"
|
|
|
|
"--disable-libuuid"
|
|
|
|
"--disable-uuidd"
|
2017-02-26 09:56:11 +00:00
|
|
|
] else [
|
|
|
|
"--enable-libuuid --disable-e2initrd-helper"
|
2018-08-08 22:33:40 +01:00
|
|
|
];
|
|
|
|
|
2019-03-14 15:42:23 +00:00
|
|
|
checkInputs = [ buildPackages.perl ];
|
2019-03-10 09:03:52 +00:00
|
|
|
doCheck = true;
|
2009-08-11 21:57:29 +01:00
|
|
|
|
2015-04-19 12:29:53 +01:00
|
|
|
postInstall = ''
|
2019-03-10 08:53:25 +00:00
|
|
|
# avoid cycle between outputs
|
2019-04-23 04:02:49 +01:00
|
|
|
if [ -f $out/lib/${pname}/e2scrub_all_cron ]; then
|
|
|
|
mv $out/lib/${pname}/e2scrub_all_cron $bin/bin/
|
|
|
|
fi
|
2015-04-19 12:29:53 +01:00
|
|
|
'';
|
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
|
|
|
};
|
|
|
|
}
|