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 f478913 commit d04d285Copy full SHA for d04d285
pkgs/build-support/trivial-builders/default.nix
@@ -222,6 +222,12 @@ rec {
222
Type: AttrSet
223
*/
224
meta ? { },
225
+ /*
226
+ `stdenv.mkDerivation`'s `passthru` argument.
227
+
228
+ Type: AttrSet
229
+ */
230
+ passthru ? { },
231
/*
232
The `checkPhase` to run. Defaults to `shellcheck` on supported
233
platforms and `bash -n`.
@@ -265,7 +271,7 @@ rec {
265
271
derivationArgs ? { },
266
272
}:
267
273
writeTextFile {
268
- inherit name meta derivationArgs;
274
+ inherit name meta passthru derivationArgs;
269
275
executable = true;
270
276
destination = "/bin/${name}";
277
allowSubstitutes = true;
0 commit comments