mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-26 07:46:21 +02:00
Fix coverage.nix
This commit is contained in:
parent
2c3749a335
commit
ca59832808
1 changed files with 8 additions and 6 deletions
14
coverage.nix
14
coverage.nix
|
@ -14,19 +14,21 @@ releaseTools.coverageAnalysis {
|
||||||
|
|
||||||
inherit (nix)
|
inherit (nix)
|
||||||
src
|
src
|
||||||
configureFlags
|
|
||||||
nativeBuildInputs
|
|
||||||
buildInputs
|
buildInputs
|
||||||
#checkInputs
|
nativeBuildInputs
|
||||||
|
propagatedBuildInputs
|
||||||
|
configureFlags
|
||||||
|
makeFlags
|
||||||
|
installFlags
|
||||||
|
doInstallCheck
|
||||||
|
installCheckFlags
|
||||||
|
installCheckTarget
|
||||||
;
|
;
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
dontInstall = false;
|
dontInstall = false;
|
||||||
|
|
||||||
doInstallCheck = true;
|
|
||||||
installCheckTarget = "installcheck"; # work around buggy detection in stdenv
|
|
||||||
|
|
||||||
lcovFilter = [ "*/boost/*" "*-tab.*" ];
|
lcovFilter = [ "*/boost/*" "*-tab.*" ];
|
||||||
|
|
||||||
hardeningDisable = ["fortify"];
|
hardeningDisable = ["fortify"];
|
||||||
|
|
Loading…
Reference in a new issue