From fcef652da8210d753f85acaf0afb569be4cc40e4 Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Thu, 17 Aug 2023 19:01:05 +0200 Subject: [PATCH] honk: add `passthru.tests` --- pkgs/servers/honk/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/servers/honk/default.nix b/pkgs/servers/honk/default.nix index 8b968dc49ee..5c342fd24a0 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.";