ncbi_tools: mark as broken and remove -fPIC

PIC is used by default since 16.09
This commit is contained in:
Robin Gloster 2017-03-30 15:44:20 +02:00
parent 9b89d68ef0
commit b9948fedc6
No known key found for this signature in database
GPG Key ID: 5E4C836C632C2882
1 changed files with 3 additions and 4 deletions

View File

@ -16,8 +16,6 @@ stdenv.mkDerivation rec {
};
configureFlags = "--without-debug --with-bin-release --with-dll --without-static";
# PIC flag (position independent code for shared libraries)
NIX_CXXFLAGS_COMPILE = if stdenv.system == "x86_64-linux" then "-fPIC" else "";
buildInputs = [ cpio ];
meta = {
@ -26,5 +24,6 @@ stdenv.mkDerivation rec {
homepage = http://www.ncbi.nlm.nih.gov/IEB/ToolBox/;
license = "GPL";
priority = "5"; # zlib.so gives a conflict with zlib
broken = true;
};
}