tv ejabberd: JSON > YAML
This commit is contained in:
parent
8d6727eaae
commit
2dbfd35f75
@ -12,7 +12,7 @@
|
|||||||
fi
|
fi
|
||||||
'';
|
'';
|
||||||
|
|
||||||
settingsFormat = pkgs.formats.yaml {};
|
settingsFormat = pkgs.formats.json {};
|
||||||
|
|
||||||
in {
|
in {
|
||||||
options.tv.ejabberd = {
|
options.tv.ejabberd = {
|
||||||
@ -25,32 +25,7 @@ in {
|
|||||||
};
|
};
|
||||||
configFile = mkOption {
|
configFile = mkOption {
|
||||||
type = types.either types.package types.absolute-pathname;
|
type = types.either types.package types.absolute-pathname;
|
||||||
default =
|
default = settingsFormat.generate "ejabberd.yaml" cfg.settings;
|
||||||
(settingsFormat.generate "ejabberd.yaml" cfg.settings)
|
|
||||||
# XXX ejabberd cannot parse MQTT topic filters enclosed in single
|
|
||||||
# quotes. By changing the YAML formatting style, double quotes will
|
|
||||||
# be used instead.
|
|
||||||
#
|
|
||||||
# Related error message:
|
|
||||||
# Invalid value of option modules->mod_mqtt->access_publish:
|
|
||||||
# Malformed topic filter
|
|
||||||
#
|
|
||||||
.overrideAttrs (old: {
|
|
||||||
nativeBuildInputs =
|
|
||||||
filter
|
|
||||||
(pkg: (parseDrvName pkg.name).name != "remarshal")
|
|
||||||
old.nativeBuildInputs
|
|
||||||
++
|
|
||||||
singleton (pkgs.symlinkJoin {
|
|
||||||
name = "remarshal";
|
|
||||||
paths = [
|
|
||||||
(pkgs.writeDashBin "json2yaml" ''
|
|
||||||
exec ${pkgs.remarshal}/bin/json2yaml --yaml-style \> "$@"
|
|
||||||
'')
|
|
||||||
pkgs.remarshal
|
|
||||||
];
|
|
||||||
});
|
|
||||||
});
|
|
||||||
};
|
};
|
||||||
ciphers = mkOption {
|
ciphers = mkOption {
|
||||||
type = types.listOf types.str;
|
type = types.listOf types.str;
|
||||||
@ -72,7 +47,7 @@ in {
|
|||||||
readOnly = true;
|
readOnly = true;
|
||||||
default =
|
default =
|
||||||
imap
|
imap
|
||||||
(i: const /* yaml */ "/tmp/credentials/certfile${toJSON i}")
|
(i: const "/tmp/credentials/certfile${toJSON i}")
|
||||||
cfg.certfiles;
|
cfg.certfiles;
|
||||||
};
|
};
|
||||||
hosts = mkOption {
|
hosts = mkOption {
|
||||||
|
Loading…
Reference in New Issue
Block a user