From c87887ddd00aea0cad015947bfebf52c960c83a3 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Thu, 8 Jan 2009 23:04:18 +0000 Subject: [PATCH] Oops. A typo fix svn path=/nixpkgs/trunk/; revision=13727 --- pkgs/lib/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/lib/default.nix b/pkgs/lib/default.nix index ca882003433..73cb9d383c4 100644 --- a/pkgs/lib/default.nix +++ b/pkgs/lib/default.nix @@ -484,7 +484,7 @@ rec { else if all __isList list then concatLists list else if all __isAttrs list then mergeAttrs list else if all (x: true == x || false == x) list then fold logicalOR false list - else if all (x: x == toString x) list then concatStrings x + else if all (x: x == toString x) list then concatStrings list else abort "${name}: Cannot merge values."; mergeTypedOption = typeName: predicate: merge: name: list: