From 95679e1344496e15219c11e0612d1b7832a9dd1a Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Thu, 20 Dec 2012 00:28:12 -0500 Subject: [PATCH] Misunderstood hasOptions, I think --- pkgs/lib/types.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/lib/types.nix b/pkgs/lib/types.nix index b99fe5a57711..a130caf29c41 100644 --- a/pkgs/lib/types.nix +++ b/pkgs/lib/types.nix @@ -186,7 +186,8 @@ rec { args: elemType.iter f path (v args); fold = op: nul: v: args: elemType.fold op nul (v args); - inherit (elemType) hasOptions delayOnGlobalEval; + inherit (elemType) delayOnGlobalEval; + hasOptions = false; }; # !!! this should be a type constructor that takes the options as