nixos-mailserver/flake.nix

129 lines
3.5 KiB
Nix
Raw Normal View History

2020-12-15 20:01:40 +05:00
{
description = "A complete and Simple Nixos Mailserver";
inputs = {
2022-12-01 02:30:45 +05:00
flake-compat = {
url = "github:edolstra/flake-compat";
flake = false;
};
2020-12-15 20:01:40 +05:00
utils.url = "github:numtide/flake-utils";
nixpkgs.url = "flake:nixpkgs/nixos-unstable";
2022-12-01 00:56:06 +05:00
nixpkgs-22_11.url = "flake:nixpkgs/nixos-22.11";
2023-05-24 02:06:06 +05:00
nixpkgs-23_05.url = "flake:nixpkgs/nixos-23.05";
blobs = {
url = "gitlab:simple-nixos-mailserver/blobs";
flake = false;
};
2020-12-15 20:01:40 +05:00
};
2023-05-24 02:06:06 +05:00
outputs = { self, utils, blobs, nixpkgs, nixpkgs-22_11, nixpkgs-23_05, ... }: let
2022-12-01 02:30:45 +05:00
lib = nixpkgs.lib;
system = "x86_64-linux";
2020-12-15 20:01:40 +05:00
pkgs = nixpkgs.legacyPackages.${system};
releases = [
{
name = "unstable";
pkgs = nixpkgs.legacyPackages.${system};
}
2023-05-24 02:06:06 +05:00
{
name = "23.05";
pkgs = nixpkgs-23_05.legacyPackages.${system};
}
];
testNames = [
"internal"
"external"
"clamav"
"multiple"
"ldap"
];
genTest = testName: release: {
2023-05-25 01:02:55 +05:00
"name"= "${testName}-${builtins.replaceStrings ["."] ["_"] release.name}";
"value"= import (./tests/. + "/${testName}.nix") {
pkgs = release.pkgs;
inherit blobs;
};
};
# Generate an attribute set such as
# {
# external-unstable = <derivation>;
# external-21_05 = <derivation>;
# ...
# }
2022-12-01 02:30:45 +05:00
allTests = lib.listToAttrs (
lib.flatten (map (t: map (r: genTest t r) releases) testNames));
mailserverModule = import ./.;
2022-12-01 02:30:45 +05:00
# Generate a MarkDown file describing the options of the NixOS mailserver module
optionsDoc = let
eval = lib.evalModules {
modules = [
mailserverModule
{
2022-12-01 02:30:45 +05:00
_module.check = false;
mailserver = {
fqdn = "mx.example.com";
domains = [
"example.com"
];
dmarcReporting = {
organizationName = "Example Corp";
domain = "example.com";
};
};
}
];
};
2022-12-01 02:30:45 +05:00
options = builtins.toFile "options.json" (builtins.toJSON
(lib.filter (opt: opt.visible && !opt.internal && lib.head opt.loc == "mailserver")
(lib.optionAttrSetToDocList eval.options)));
in pkgs.runCommand "options.md" { buildInputs = [pkgs.python3Minimal]; } ''
echo "Generating options.md from ${options}"
python ${./scripts/generate-options.py} ${options} > $out
'';
2021-07-24 00:25:14 +05:00
documentation = pkgs.stdenv.mkDerivation {
name = "documentation";
2022-12-01 02:30:45 +05:00
src = lib.sourceByRegex ./docs ["logo\\.png" "conf\\.py" "Makefile" ".*\\.rst"];
2021-07-24 00:25:14 +05:00
buildInputs = [(
2022-12-01 02:30:45 +05:00
pkgs.python3.withPackages (p: with p; [
sphinx
sphinx_rtd_theme
myst-parser
2021-07-24 00:25:14 +05:00
])
)];
buildPhase = ''
2022-12-01 02:30:45 +05:00
cp ${optionsDoc} options.md
2021-07-24 00:25:14 +05:00
# Workaround for https://github.com/sphinx-doc/sphinx/issues/3451
2022-12-01 02:30:45 +05:00
unset SOURCE_DATE_EPOCH
2021-07-24 00:25:14 +05:00
make html
'';
installPhase = ''
2022-12-01 02:30:45 +05:00
cp -Tr _build/html $out
2021-07-24 00:25:14 +05:00
'';
};
2022-12-01 02:30:45 +05:00
in {
nixosModules = rec {
mailserver = mailserverModule;
default = mailserver;
};
nixosModule = self.nixosModules.default; # compatibility
hydraJobs.${system} = allTests // {
2021-07-24 00:25:14 +05:00
inherit documentation;
};
checks.${system} = allTests;
packages.${system} = {
inherit optionsDoc documentation;
};
2022-12-01 02:30:45 +05:00
devShells.${system}.default = pkgs.mkShell {
inputsFrom = [ documentation ];
packages = with pkgs; [
2020-12-15 20:01:40 +05:00
clamav
];
};
2022-12-01 02:30:45 +05:00
devShell.${system} = self.devShells.${system}.default; # compatibility
};
2020-12-15 20:01:40 +05:00
}