From 39e27a04b8d1fc8251128b1f9f8f152b8c8a9b68 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Thu, 23 Jul 2015 09:48:03 -0400 Subject: Importing derivations: Add name attribute to make a valid drv --- corepkgs/imported-drv-to-derivation.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'corepkgs') diff --git a/corepkgs/imported-drv-to-derivation.nix b/corepkgs/imported-drv-to-derivation.nix index bdb60169860a..eab8b050e8ff 100644 --- a/corepkgs/imported-drv-to-derivation.nix +++ b/corepkgs/imported-drv-to-derivation.nix @@ -1,10 +1,10 @@ -attrs @ { drvPath, outputs, ... }: +attrs @ { drvPath, outputs, name, ... }: let commonAttrs = (builtins.listToAttrs outputsList) // { all = map (x: x.value) outputsList; - inherit drvPath; + inherit drvPath name; type = "derivation"; }; -- cgit 1.4.1