2017-07-20 10:54:25 +02:00
|
|
|
{ stdenv, fetchpatch, fetchgit, autoconf, automake, gettext, libtool, readline, utillinux }:
|
|
|
|
|
|
|
|
let
|
|
|
|
gentooPatch = name: sha256: fetchpatch {
|
2017-10-23 15:17:28 +02:00
|
|
|
url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/sys-fs/xfsprogs/files/${name}?id=f4055adc94e11d182033a71e32f97b357c034aff";
|
2017-07-20 10:54:25 +02:00
|
|
|
inherit sha256;
|
|
|
|
};
|
|
|
|
in
|
2009-10-08 15:07:56 +02:00
|
|
|
|
2009-12-08 17:58:22 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2017-07-20 10:54:25 +02:00
|
|
|
name = "xfsprogs-${version}";
|
2017-11-28 16:26:19 +01:00
|
|
|
version = "4.14.0";
|
2009-10-08 15:07:56 +02:00
|
|
|
|
2017-07-20 10:54:25 +02:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://git.kernel.org/pub/scm/fs/xfs/xfsprogs-dev.git";
|
|
|
|
rev = "refs/tags/v${version}";
|
2017-11-28 16:26:19 +01:00
|
|
|
sha256 = "19mg3avm188xz215hqbbh7251q27qwm7g1xr8ffrjwvzmdq55rxj";
|
2009-10-08 15:07:56 +02:00
|
|
|
};
|
|
|
|
|
2017-07-20 10:54:25 +02:00
|
|
|
outputs = [ "bin" "dev" "out" "doc" ];
|
2014-09-19 23:18:33 +02:00
|
|
|
|
2017-07-20 10:54:25 +02:00
|
|
|
nativeBuildInputs = [ autoconf automake libtool gettext ];
|
|
|
|
propagatedBuildInputs = [ utillinux ]; # Dev headers include <uuid/uuid.h>
|
|
|
|
buildInputs = [ readline ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2012-06-10 16:41:22 +02:00
|
|
|
|
2017-07-20 10:54:25 +02:00
|
|
|
# Why is all this garbage needed? Why? Why?
|
2014-09-19 23:18:33 +02:00
|
|
|
patches = [
|
2017-10-23 15:17:28 +02:00
|
|
|
(gentooPatch "xfsprogs-4.12.0-sharedlibs.patch" "1i081749x91jvlrw84l4a3r081vqcvn6myqhnqbnfcfhd64h12bq")
|
2017-07-20 10:54:25 +02:00
|
|
|
(gentooPatch "xfsprogs-4.7.0-libxcmd-link.patch" "1lvy1ajzml39a631a7jqficnzsd40bzkca7hkxv1ybiqyp8sf55s")
|
|
|
|
(gentooPatch "xfsprogs-4.9.0-underlinking.patch" "1r7l8jphspy14i43zbfnjrnyrdm4cpgyfchblascxylmans0gci7")
|
2014-09-19 23:18:33 +02:00
|
|
|
];
|
2014-04-16 23:41:50 +02:00
|
|
|
|
2014-09-20 01:14:50 +02:00
|
|
|
preConfigure = ''
|
2017-07-20 10:54:25 +02:00
|
|
|
sed -i Makefile -e '/cp include.install-sh/d'
|
|
|
|
make configure
|
2014-09-20 01:14:50 +02:00
|
|
|
'';
|
|
|
|
|
2014-09-19 23:18:33 +02:00
|
|
|
configureFlags = [
|
|
|
|
"--disable-lib64"
|
|
|
|
"--enable-readline"
|
|
|
|
];
|
2009-10-08 15:07:56 +02:00
|
|
|
|
2014-09-19 23:18:33 +02:00
|
|
|
installFlags = [ "install-dev" ];
|
|
|
|
|
2017-07-20 10:54:25 +02:00
|
|
|
# FIXME: forbidden rpath
|
|
|
|
postInstall = ''
|
|
|
|
find . -type d -name .libs | xargs rm -rf
|
|
|
|
'';
|
2014-09-19 23:18:33 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://xfs.org/;
|
2009-10-08 15:07:56 +02:00
|
|
|
description = "SGI XFS utilities";
|
2014-09-19 23:18:33 +02:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
platforms = platforms.linux;
|
2017-07-20 10:54:25 +02:00
|
|
|
maintainers = with maintainers; [ dezgeg ];
|
2009-10-08 15:07:56 +02:00
|
|
|
};
|
|
|
|
}
|