3
0
Fork 0
forked from mirrors/nixpkgs

nilfs-utils: Set dontPatchELF due to broken RPATH by patchelf

This commit is contained in:
Tuomas Tynkkynen 2016-09-01 01:47:35 +03:00
parent c643770861
commit 96004b9d8c

View file

@ -23,6 +23,9 @@ stdenv.mkDerivation rec {
sed -e 's@/sbin/@'"$out"'/sbin/@' -i ./lib/cleaner*.c
'';
# FIXME: Remove after https://github.com/NixOS/patchelf/pull/98 is in
dontPatchELF = true;
meta = {
description = "NILFS utilities";
maintainers = with stdenv.lib.maintainers;
@ -33,6 +36,5 @@ stdenv.mkDerivation rec {
linux;
downloadPage = "http://nilfs.sourceforge.net/en/download.html";
updateWalker = true;
inherit version;
};
}