nixpkgs/pkgs/tools/filesystems/xfsprogs/default.nix

67 lines
1.8 KiB
Nix
Raw Normal View History

2018-11-28 09:44:42 +00:00
{ stdenv, fetchpatch, fetchgit, autoconf, automake, gettext, libtool, readline
, buildPackages, libuuid
}:
2017-07-20 08:54:25 +00:00
let
gentooPatch = name: sha256: fetchpatch {
2017-10-23 13:17:28 +00:00
url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/sys-fs/xfsprogs/files/${name}?id=f4055adc94e11d182033a71e32f97b357c034aff";
2017-07-20 08:54:25 +00:00
inherit sha256;
};
in
stdenv.mkDerivation rec {
2017-07-20 08:54:25 +00:00
name = "xfsprogs-${version}";
2017-11-28 15:26:19 +00:00
version = "4.14.0";
2017-07-20 08:54:25 +00:00
src = fetchgit {
url = "https://git.kernel.org/pub/scm/fs/xfs/xfsprogs-dev.git";
rev = "v${version}";
2017-11-28 15:26:19 +00:00
sha256 = "19mg3avm188xz215hqbbh7251q27qwm7g1xr8ffrjwvzmdq55rxj";
};
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 = [
autoconf automake libtool gettext
libuuid # codegen tool uses libuuid
];
propagatedBuildInputs = [ libuuid ]; # Dev headers include <uuid/uuid.h>
2017-07-20 08:54:25 +00:00
buildInputs = [ readline ];
enableParallelBuilding = true;
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 = [
2017-10-23 13:17:28 +00:00
(gentooPatch "xfsprogs-4.12.0-sharedlibs.patch" "1i081749x91jvlrw84l4a3r081vqcvn6myqhnqbnfcfhd64h12bq")
2017-07-20 08:54:25 +00:00
(gentooPatch "xfsprogs-4.7.0-libxcmd-link.patch" "1lvy1ajzml39a631a7jqficnzsd40bzkca7hkxv1ybiqyp8sf55s")
(gentooPatch "xfsprogs-4.9.0-underlinking.patch" "1r7l8jphspy14i43zbfnjrnyrdm4cpgyfchblascxylmans0gci7")
2018-02-26 12:40:51 +00:00
./glibc-2.27.patch
2014-09-19 21:18:33 +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"
];
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; {
homepage = http://xfs.org/;
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 ];
};
}