Nix expr: Fix unit tests not working since they were changed to net48
This commit is contained in:
parent
d2ea93d5e2
commit
a18fbb8742
|
@ -87,7 +87,8 @@
|
||||||
outputs = [ "out" "assets" "extraUnmanagedDeps" "waterboxCores" ];
|
outputs = [ "out" "assets" "extraUnmanagedDeps" "waterboxCores" ];
|
||||||
propagatedBuildOutputs = []; # without this, other outputs depend on `out`
|
propagatedBuildOutputs = []; # without this, other outputs depend on `out`
|
||||||
strictDeps = true;
|
strictDeps = true;
|
||||||
nativeBuildInputs = lib.optional finalAttrs.isLocalBuild git;
|
nativeBuildInputs = lib.optional finalAttrs.doCheck finalAttrs.mono
|
||||||
|
++ lib.optional finalAttrs.isLocalBuild git;
|
||||||
buildInputs = genDepsHostTargetFor {
|
buildInputs = genDepsHostTargetFor {
|
||||||
inherit hawkSourceInfo;
|
inherit hawkSourceInfo;
|
||||||
mono' = finalAttrs.mono;
|
mono' = finalAttrs.mono;
|
||||||
|
@ -122,7 +123,7 @@
|
||||||
|
|
||||||
runHook postBuild
|
runHook postBuild
|
||||||
'';
|
'';
|
||||||
checkNativeInputs = finalAttrs.buildInputs;
|
checkNativeInputs = finalAttrs.buildInputs; # doesn't work???
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
runHook preCheck
|
runHook preCheck
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue