forked from mirrors/nixpkgs
nixos/wordpress: fix minor syntax error
This commit is contained in:
parent
66e0e5ad74
commit
748c2b416c
|
@ -154,7 +154,7 @@ let
|
|||
type = with types; coercedTo
|
||||
(listOf path)
|
||||
(l: warn "setting this option with a list is deprecated"
|
||||
listToAttrs (map (p: nameValuePair (p.name or throw "${p} does not have a name") p) l))
|
||||
listToAttrs (map (p: nameValuePair (p.name or (throw "${p} does not have a name")) p) l))
|
||||
(attrsOf path);
|
||||
default = {};
|
||||
description = lib.mdDoc ''
|
||||
|
|
Loading…
Reference in a new issue