Merge pull request #315444 from Kupac/fix_Rbwa

rPackages.Rbwa: fix build
This commit is contained in:
Justin Bedő
2024-05-31 10:02:54 +10:00
committed by GitHub
+9
View File
@@ -1667,6 +1667,15 @@ let
hardeningDisable = [ "format" ];
});
Rbwa = old.Rbwa.overrideAttrs (attrs: {
# Parallel build cleans up *.o before they can be packed in a library
postPatch = ''
substituteInPlace src/Makefile --replace-fail \
"all:\$(PROG) ../inst/bwa clean" \
"all:\$(PROG) ../inst/bwa" \
'';
});
ROracle = old.ROracle.overrideAttrs (attrs: {
configureFlags = [
"--with-oci-lib=${pkgs.oracle-instantclient.lib}/lib"