diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-04-04T19·53+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-04-04T19·53+0200 |
commit | 8160f794e79a4a2a5269080b408d69fc93d7a305 (patch) | |
tree | dac56378b10e000cdc8b31d83615279dcd52a4e2 /corepkgs/derivation.nix | |
parent | a5fe73094016973a50741db0c5d51ca96c14147b (diff) |
derivation: Don't require certain function arguments
Turns out that in Nixpkgs, derivation is actually called without a ‘name’ argument in some places :-(
Diffstat (limited to 'corepkgs/derivation.nix')
-rw-r--r-- | corepkgs/derivation.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/corepkgs/derivation.nix b/corepkgs/derivation.nix index 374fe501049b..c0fbe8082cd3 100644 --- a/corepkgs/derivation.nix +++ b/corepkgs/derivation.nix @@ -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 |