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:
Eelco Dolstra 2014-04-04 21:53:47 +02:00
parent a5fe730940
commit 8160f794e7
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
/* This is the implementation of the derivation builtin function.
It's actually a wrapper around the derivationStrict primop. */
drvAttrs @ { outputs ? [ "out" ], name, builder, system, ... }:
drvAttrs @ { outputs ? [ "out" ], ... }:
let