guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

22/64: derivation: Don't require certain function arguments


From: Ludovic Courtès
Subject: 22/64: derivation: Don't require certain function arguments
Date: Mon, 05 Jan 2015 16:38:57 +0000

civodul pushed a commit to branch nix
in repository guix.

commit 8160f794e79a4a2a5269080b408d69fc93d7a305
Author: Eelco Dolstra <address@hidden>
Date:   Fri Apr 4 21:53:47 2014 +0200

    derivation: Don't require certain function arguments
    
    Turns out that in Nixpkgs, derivation is actually called without a
    ‘name’ argument in some places :-(
---
 corepkgs/derivation.nix |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/corepkgs/derivation.nix b/corepkgs/derivation.nix
index 374fe50..c0fbe80 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
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]