pharo-vm: Disable "pic" hardening

Compiling the Pharo VM with "pic" hardening causes segmentation faults
on startup of pharo-launcher.

Resolves NixOS/nixpkgs#24541.
This commit is contained in:
Luke Gorrie 2017-04-03 13:58:02 +00:00
parent a77571399d
commit c77a54d79f

View File

@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
mimeType = "application/x-pharo-image";
};
hardeningDisable = [ "format" ];
hardeningDisable = [ "format" "pic" ];
# Building
preConfigure = ''