forked from lix-project/lix
derivation: Don't require certain function arguments
Turns out that in Nixpkgs, derivation is actually called without a ‘name’ argument in some places :-(
This commit is contained in:
parent
a5fe730940
commit
8160f794e7
|
@ -1,7 +1,7 @@
|
||||||
/* This is the implementation of the ‘derivation’ builtin function.
|
/* This is the implementation of the ‘derivation’ builtin function.
|
||||||
It's actually a wrapper around the ‘derivationStrict’ primop. */
|
It's actually a wrapper around the ‘derivationStrict’ primop. */
|
||||||
|
|
||||||
drvAttrs @ { outputs ? [ "out" ], name, builder, system, ... }:
|
drvAttrs @ { outputs ? [ "out" ], ... }:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue