2018-12-02 17:32:03 +00:00
|
|
|
{ stdenv, buildPackages, fetchpatch, fetchgit, autoconf, automake, gettext, libtool, pkgconfig
|
|
|
|
, icu, libuuid, readline
|
2018-11-28 09:44:42 +00:00
|
|
|
}:
|
2017-07-20 08:54:25 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
gentooPatch = name: sha256: fetchpatch {
|
2018-12-01 06:13:42 +00:00
|
|
|
url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/sys-fs/xfsprogs/files/${name}?id=2517dd766cf84d251631f4324f7ec4bce912abb9";
|
2017-07-20 08:54:25 +00:00
|
|
|
inherit sha256;
|
|
|
|
};
|
|
|
|
in
|
2009-10-08 13:07:56 +00:00
|
|
|
|
2009-12-08 16:58:22 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "xfsprogs";
|
2018-12-01 06:13:42 +00:00
|
|
|
version = "4.19.0";
|
2009-10-08 13:07:56 +00:00
|
|
|
|
2017-07-20 08:54:25 +00:00
|
|
|
src = fetchgit {
|
2018-06-09 23:35:39 +00:00
|
|
|
url = "https://git.kernel.org/pub/scm/fs/xfs/xfsprogs-dev.git";
|
|
|
|
rev = "v${version}";
|
2018-12-01 06:13:42 +00:00
|
|
|
sha256 = "18728hzfxr1bg4bdzqlxjs893ac1zwlfr7nmc2q4a1sxs0sphd1d";
|
2009-10-08 13:07:56 +00:00
|
|
|
};
|
|
|
|
|
2017-07-20 08:54:25 +00:00
|
|
|
outputs = [ "bin" "dev" "out" "doc" ];
|
2014-09-19 21:18:33 +00:00
|
|
|
|
2018-11-28 09:44:42 +00:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
|
|
|
nativeBuildInputs = [
|
2018-12-02 17:32:03 +00:00
|
|
|
autoconf automake libtool gettext pkgconfig
|
2018-11-28 09:44:42 +00:00
|
|
|
libuuid # codegen tool uses libuuid
|
|
|
|
];
|
2018-12-01 06:13:42 +00:00
|
|
|
buildInputs = [ readline icu ];
|
2018-11-28 09:44:42 +00:00
|
|
|
propagatedBuildInputs = [ libuuid ]; # Dev headers include <uuid/uuid.h>
|
2017-07-20 08:54:25 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2012-06-10 14:41:22 +00:00
|
|
|
|
2017-07-20 08:54:25 +00:00
|
|
|
# Why is all this garbage needed? Why? Why?
|
2014-09-19 21:18:33 +00:00
|
|
|
patches = [
|
2018-12-01 06:13:42 +00:00
|
|
|
(gentooPatch "xfsprogs-4.15.0-sharedlibs.patch" "0bv2naxpiw7vcsg8p1v2i47wgfda91z1xy1kfwydbp4wmb4nbyyv")
|
|
|
|
(gentooPatch "xfsprogs-4.15.0-docdir.patch" "1srgdidvq2ka0rmfdwpqp92fapgh53w1h7rajm4nnby5vp2v8dfr")
|
2017-07-20 08:54:25 +00:00
|
|
|
(gentooPatch "xfsprogs-4.9.0-underlinking.patch" "1r7l8jphspy14i43zbfnjrnyrdm4cpgyfchblascxylmans0gci7")
|
2014-09-19 21:18:33 +00:00
|
|
|
];
|
2014-04-16 21:41:50 +00:00
|
|
|
|
2014-09-19 23:14:50 +00:00
|
|
|
preConfigure = ''
|
2017-07-20 08:54:25 +00:00
|
|
|
sed -i Makefile -e '/cp include.install-sh/d'
|
|
|
|
make configure
|
2014-09-19 23:14:50 +00:00
|
|
|
'';
|
|
|
|
|
2014-09-19 21:18:33 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--disable-lib64"
|
|
|
|
"--enable-readline"
|
|
|
|
];
|
2009-10-08 13:07:56 +00:00
|
|
|
|
2014-09-19 21:18:33 +00:00
|
|
|
installFlags = [ "install-dev" ];
|
|
|
|
|
2017-07-20 08:54:25 +00:00
|
|
|
# FIXME: forbidden rpath
|
|
|
|
postInstall = ''
|
|
|
|
find . -type d -name .libs | xargs rm -rf
|
|
|
|
'';
|
2014-09-19 21:18:33 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-10-02 07:58:50 +00:00
|
|
|
homepage = "https://xfs.org/";
|
2009-10-08 13:07:56 +00:00
|
|
|
description = "SGI XFS utilities";
|
2014-09-19 21:18:33 +00:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
platforms = platforms.linux;
|
2017-07-20 08:54:25 +00:00
|
|
|
maintainers = with maintainers; [ dezgeg ];
|
2009-10-08 13:07:56 +00:00
|
|
|
};
|
|
|
|
}
|