Merge pull request #315435 from Kupac/fix_rGADEM

rPackages: Fix Bioc packages with format error
This commit is contained in:
Justin Bedő
2024-05-31 10:01:25 +10:00
committed by GitHub
+16
View File
@@ -1214,6 +1214,22 @@ let
patchPhase = "patchShebangs configure";
});
cisPath = old.cisPath.overrideAttrs (attrs: {
hardeningDisable = [ "format" ];
});
HilbertVis = old.HilbertVis.overrideAttrs (attrs: {
hardeningDisable = [ "format" ];
});
MANOR = old.MANOR.overrideAttrs (attrs: {
hardeningDisable = [ "format" ];
});
rGADEM = old.rGADEM.overrideAttrs (attrs: {
hardeningDisable = [ "format" ];
});
rsgeo = old.rsgeo.overrideAttrs (attrs: {
nativeBuildInputs = [ pkgs.cargo ] ++ attrs.nativeBuildInputs;
postPatch = "patchShebangs configure";