mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2025-01-19 17:46:46 +02:00
29 lines
387 B
Nix
29 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;
|
|
}
|