about summary refs log tree commit diff
path: root/pkgs/development/web
diff options
context:
space:
mode:
authorgithub-actions[bot]2024-08-18 00:03:22 +0000
committerGitHub2024-08-18 00:03:22 +0000
commit0f820c1c5a99173f41b444263c7aba549e81d876 (patch)
treef340591b5be1dca5cffc84c9a2bcafce1af1c53a /pkgs/development/web
parentee89137c4be8d72a6a4be91393e8d2b2c3765504 (diff)
parentc2a8e6172d61c384e3b3f6236a81bf8de7fdeb7a (diff)
Merge staging-next into staging
Diffstat (limited to 'pkgs/development/web')
-rw-r--r--pkgs/development/web/mailcatcher/default.nix3
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";