diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-02-18 10:58:23 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-02-25 15:54:58 +0530 |
commit | c2078d3e8be3bec0248c3f272ec6bebf46093196 (patch) | |
tree | 2e6c758c0e74d4a81aeab3cc5a3c1badea408897 /pkgs/stalwart-mail-config.nix | |
parent | 58e6156436e348d48d335deadb46ecec46432621 (diff) |
kay/mail: init
Diffstat (limited to 'pkgs/stalwart-mail-config.nix')
-rw-r--r-- | pkgs/stalwart-mail-config.nix | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/pkgs/stalwart-mail-config.nix b/pkgs/stalwart-mail-config.nix new file mode 100644 index 0000000..77fc366 --- /dev/null +++ b/pkgs/stalwart-mail-config.nix @@ -0,0 +1,43 @@ +{ lib, + stdenvNoCC, + fetchzip, + stalwart-mail, +}: + +stdenvNoCC.mkDerivation { + pname = stalwart-mail.pname + "-config"; + version = stalwart-mail.version; + + src = let + rev = stalwart-mail.src.rev; + owner = stalwart-mail.src.owner; + repo = stalwart-mail.src.repo; + in fetchzip { + url = "https://github.com/${owner}/${repo}/raw/${rev}/resources/config.zip"; + # gives us a chance to manually verify config changes, if not use + # stalwart-mail.src + hash = "sha256-ji7+f3BGzVEb9gp5BXCStPR4/Umy93OTMA+DhYI/azk="; + }; + + outputs = [ "out" ]; + patchPhase = '' + # TODO: remove me + # toml spec violation, author said this will be fixed on the next realase + sed -e 's/\[storage.fts\]//g' -e 's/default-language = "en"//g' \ + -i ./common/store.toml + + # outliers as of 0.6.0 + # smtp/signature.toml:#public-key = "file://%{BASE_PATH}%/etc/dkim/%{DEFAULT_DOMAIN}%.cert" + # smtp/signature.toml:private-key = "file://%{BASE_PATH}%/etc/dkim/%{DEFAULT_DOMAIN}%.key" + # common/tls.toml:cache = "%{BASE_PATH}%/etc/acme" + find -type f \ + -name '*.toml' \ + -exec sed 's=%{BASE_PATH}%/etc=${placeholder "out"}=g' -i {} \; + ''; + installPhase = "cp -r ./ $out"; + + meta = stalwart-mail.meta // { + description = "Configs for" + stalwart-mail.meta.description; + maintainers = with lib.maintainers; [ sinanmohd ]; + }; +} |