2018-09-24 17:39:35 +02:00
|
|
|
{ stdenv, buildPackages, fetchurl, fetchpatch, pkgconfig, libuuid, gettext, texinfo, perl }:
|
2009-08-11 22:57:29 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-03-10 09:53:25 +01:00
|
|
|
pname = "e2fsprogs";
|
|
|
|
version = "1.45.0";
|
2009-09-25 22:53:21 +02:00
|
|
|
|
2009-08-11 22:57:29 +02:00
|
|
|
src = fetchurl {
|
2019-03-10 09:53:25 +01:00
|
|
|
url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz";
|
|
|
|
sha256 = "1sgcjarfksa8bkx81q5cd6rzqvhzgs28a0ljwyr4ggqpfx7d18vk";
|
2009-08-11 22:57:29 +02:00
|
|
|
};
|
|
|
|
|
2017-07-11 13:10:57 +02:00
|
|
|
outputs = [ "bin" "dev" "out" "man" "info" ];
|
2014-08-30 19:11:52 +02:00
|
|
|
|
2018-01-23 18:34:25 +01:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
|
|
|
nativeBuildInputs = [ pkgconfig texinfo ];
|
2018-03-14 23:58:20 +01:00
|
|
|
buildInputs = [ libuuid gettext ];
|
2009-08-11 22:57:29 +02:00
|
|
|
|
2018-08-28 13:45:52 +02:00
|
|
|
# Only use glibc's __GNUC_PREREQ(X,Y) (checks if compiler is gcc version >= X.Y) when using glibc
|
2018-09-24 17:39:35 +02:00
|
|
|
patches = if stdenv.hostPlatform.libc == "glibc" then null
|
|
|
|
else [
|
|
|
|
(fetchpatch {
|
2018-12-31 05:45:46 +01:00
|
|
|
url = "https://raw.githubusercontent.com/void-linux/void-packages/9583597eb3e6e6b33f61dbc615d511ce030bc443/srcpkgs/e2fsprogs/patches/fix-glibcism.patch";
|
|
|
|
sha256 = "1fyml1iwrs412xn2w36ra28am3sq4klrrj60lnf7rysyw069nxk3";
|
2018-09-24 17:39:35 +02:00
|
|
|
extraPrefix = "";
|
|
|
|
})
|
|
|
|
];
|
2018-08-28 13:45:52 +02:00
|
|
|
|
2017-02-26 10:56:11 +01: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 23:33:40 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
checkInputs = [ perl ];
|
2019-03-10 10:03:52 +01:00
|
|
|
doCheck = true;
|
2009-08-11 22:57:29 +02:00
|
|
|
|
2015-04-19 13:29:53 +02:00
|
|
|
postInstall = ''
|
2019-03-10 09:53:25 +01:00
|
|
|
# avoid cycle between outputs
|
|
|
|
mv $out/lib/${pname}/e2scrub_all_cron $bin/bin/
|
2015-04-19 13:29:53 +02:00
|
|
|
'';
|
2012-09-05 01:04:14 +02:00
|
|
|
|
2015-04-19 13:29:53 +02:00
|
|
|
enableParallelBuilding = true;
|
2012-09-05 01:04:14 +02:00
|
|
|
|
2017-02-26 10:56:11 +01:00
|
|
|
meta = with stdenv.lib; {
|
2009-08-11 22:57:29 +02:00
|
|
|
homepage = http://e2fsprogs.sourceforge.net/;
|
|
|
|
description = "Tools for creating and checking ext2/ext3/ext4 filesystems";
|
2017-02-26 10:56:11 +01:00
|
|
|
license = licenses.gpl2;
|
2018-11-15 22:52:21 +01:00
|
|
|
platforms = platforms.unix;
|
2017-02-26 10:56:11 +01:00
|
|
|
maintainers = [ maintainers.eelco ];
|
2009-08-11 22:57:29 +02:00
|
|
|
};
|
|
|
|
}
|