summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2020-06-18 12:45:19 +0200
committerJan Tojnar <jtojnar@gmail.com>2020-06-18 16:20:20 +0200
commit33d79f110d999596bd08726d812e752edcdbf8dc (patch)
tree1694411faaba916d1dba6081fc604f1dd85d0e3a /nixos
parent46db244d2d3e2da47672fdd1239e1ba1f3c4523d (diff)
nixos/openldap: fix eval
Fixes

	error: The option value `meta.maintainers' in `nixos/modules/services/databases/openldap.nix' is not of type `list of maintainers'.
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/databases/openldap.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/databases/openldap.nix b/nixos/modules/services/databases/openldap.nix
index 8c2851c37ac23..9b4d9a98b745e 100644
--- a/nixos/modules/services/databases/openldap.nix
+++ b/nixos/modules/services/databases/openldap.nix
@@ -232,7 +232,7 @@ in
   };
 
   meta = {
-    maintainers = lib.maintainers.mic92;
+    maintainers = [ lib.maintainers.mic92 ];
   };