summary refs log tree commit diff
path: root/pkgs/servers/honk
diff options
context:
space:
mode:
authorPol Dellaiera <pol.dellaiera@protonmail.com>2023-08-17 19:01:05 +0200
committerPol Dellaiera <pol.dellaiera@protonmail.com>2023-08-19 13:57:44 +0200
commitfcef652da8210d753f85acaf0afb569be4cc40e4 (patch)
treea5829e0da7161c476c0d995673ae36320a87d0d6 /pkgs/servers/honk
parentb8d1cd6e508f4a1c64450961bd5020e4329538e8 (diff)
honk: add `passthru.tests`
Diffstat (limited to 'pkgs/servers/honk')
-rw-r--r--pkgs/servers/honk/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/servers/honk/default.nix b/pkgs/servers/honk/default.nix
index 8b968dc49eea2..5c342fd24a029 100644
--- a/pkgs/servers/honk/default.nix
+++ b/pkgs/servers/honk/default.nix
@@ -3,6 +3,7 @@
 , fetchurl
 , sqlite
 , installShellFiles
+, nixosTests
 }:
 
 buildGoModule rec {
@@ -49,6 +50,10 @@ buildGoModule rec {
     mv views $out/share/${pname}
   '';
 
+  passthru.tests = {
+    inherit (nixosTests) honk;
+  };
+
   meta = {
     changelog = "https://humungus.tedunangst.com/r/honk/v/v${version}/f/docs/changelog.txt";
     description = "An ActivityPub server with minimal setup and support costs.";