forked from lix-project/lix
30 lines
387 B
Nix
30 lines
387 B
Nix
{ lib
|
|
, releaseTools
|
|
, nix
|
|
, stdenv
|
|
}:
|
|
|
|
let
|
|
inherit (nix) version;
|
|
|
|
in
|
|
|
|
releaseTools.coverageAnalysis {
|
|
name = "nix-coverage-${version}";
|
|
|
|
inherit (nix)
|
|
src
|
|
buildInputs
|
|
nativeBuildInputs
|
|
propagatedBuildInputs
|
|
configureFlags
|
|
makeFlags
|
|
installFlags
|
|
doInstallCheck
|
|
installCheckFlags
|
|
installCheckTarget
|
|
;
|
|
|
|
enableParallelBuilding = true;
|
|
}
|