rename.nix: Remove annoying traces

This commit is contained in:
Shea Levy 2013-02-21 14:43:02 -05:00
parent 497aeabd23
commit e0f35b77d8

View File

@ -28,8 +28,8 @@ let
zipModules = list: with pkgs.lib;
zip (n: v:
if tail v != [] then
if n == "_type" then builtins.trace "Merge _type" (head v)
else if n == "extraConfigs" then builtins.trace "Merge extraConfigs" (concatLists v)
if n == "_type" then (head v)
else if n == "extraConfigs" then (concatLists v)
else if n == "description" || n == "apply" then
abort "Cannot rename an option to multiple options."
else zipModules v