forked from security/hakurei
nix: disable source fortification in devShell
This generates warnings when compiling without optimisation. Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
@@ -160,7 +160,10 @@
|
||||
pkgs = nixpkgsFor.${system};
|
||||
in
|
||||
{
|
||||
default = pkgs.mkShell { buildInputs = hakurei.targetPkgs; };
|
||||
default = pkgs.mkShell {
|
||||
buildInputs = hakurei.targetPkgs;
|
||||
hardeningDisable = [ "fortify" ];
|
||||
};
|
||||
withPackage = pkgs.mkShell { buildInputs = [ hakurei ] ++ hakurei.targetPkgs; };
|
||||
|
||||
vm =
|
||||
|
||||
Reference in New Issue
Block a user