diff options
author | Peder Bergebakken Sundt | 2024-08-18 00:29:43 +0200 |
---|---|---|
committer | GitHub | 2024-08-18 00:29:43 +0200 |
commit | e471916645b13adae1401d66d1afb35638576953 (patch) | |
tree | ea30c6e0c2c9b89504f29662926bbd8ad28658f0 /pkgs/development/web | |
parent | 7a65a0bffd50a96e1e67491f0f3c262aada9a388 (diff) |
treewide: passthru nixos test (#334491)
Diffstat (limited to 'pkgs/development/web')
-rw-r--r-- | pkgs/development/web/mailcatcher/default.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/web/mailcatcher/default.nix b/pkgs/development/web/mailcatcher/default.nix index 17d25378d8cd..a6188fec5dbd 100644 --- a/pkgs/development/web/mailcatcher/default.nix +++ b/pkgs/development/web/mailcatcher/default.nix @@ -1,4 +1,4 @@ -{ ruby_3_2, lib, bundlerApp, bundlerUpdateScript }: +{ ruby_3_2, lib, bundlerApp, bundlerUpdateScript, nixosTests }: bundlerApp { pname = "mailcatcher"; @@ -7,6 +7,7 @@ bundlerApp { ruby = ruby_3_2; passthru.updateScript = bundlerUpdateScript "mailcatcher"; + passthru.tests = { inherit (nixosTests) mailcatcher; }; meta = with lib; { description = "SMTP server and web interface to locally test outbound emails"; |