about summary refs log tree commit diff
path: root/corepkgs
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-04-04T19·53+0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-04-04T19·53+0200
commit8160f794e79a4a2a5269080b408d69fc93d7a305 (patch)
treedac56378b10e000cdc8b31d83615279dcd52a4e2 /corepkgs
parenta5fe73094016973a50741db0c5d51ca96c14147b (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')
-rw-r--r--corepkgs/derivation.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/corepkgs/derivation.nix b/corepkgs/derivation.nix
index 374fe50104..c0fbe8082c 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