We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0999c5c commit 928ebebCopy full SHA for 928ebeb
flake.nix
@@ -88,6 +88,7 @@
88
depsBuildBuild ? [],
89
nativeBuildInputs ? [],
90
nativeCheckInputs ? [],
91
+ checkPhase ? "",
92
...
93
} @ args:
94
with pkgs.lib; let
@@ -106,6 +107,12 @@
106
107
depsBuildBuild = depsBuildBuild';
108
}
109
// optionalAttrs (args ? cargoArtifacts) {
110
+ checkPhase =
111
+ ''
112
+ export GOCACHE=$TMPDIR/go-cache
113
114
+ + checkPhase;
115
+
116
depsBuildBuild =
117
depsBuildBuild'
118
++ optionals darwin2darwin [
0 commit comments