forked from lix-project/lix
Disable -pie on static nix
This should resolve the failing build. See https://github.com/NixOS/nixpkgs/pull/128674 for a better fix.
This commit is contained in:
parent
7351656b82
commit
2200f315da
|
@ -549,6 +549,8 @@
|
||||||
stripAllList = ["bin"];
|
stripAllList = ["bin"];
|
||||||
|
|
||||||
strictDeps = true;
|
strictDeps = true;
|
||||||
|
|
||||||
|
hardeningDisable = [ "pie" ];
|
||||||
};
|
};
|
||||||
} // builtins.listToAttrs (map (crossSystem: {
|
} // builtins.listToAttrs (map (crossSystem: {
|
||||||
name = "nix-${crossSystem}";
|
name = "nix-${crossSystem}";
|
||||||
|
|
Loading…
Reference in a new issue