Disable hardening in ovni

This commit is contained in:
Rodrigo Arias 2022-12-19 12:11:14 +01:00
parent 1ea1768728
commit 593ed84f1b

View File

@ -27,6 +27,7 @@ stdenv.mkDerivation rec {
dontStrip = true; dontStrip = true;
doCheck = true; doCheck = true;
checkTarget = "test"; checkTarget = "test";
hardeningDisable = [ "all" ];
src = ../.; src = ../.;
} }