summary refs log tree commit diff
path: root/pkgs/servers/hockeypuck/server.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/servers/hockeypuck/server.nix')
-rw-r--r--pkgs/servers/hockeypuck/server.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/servers/hockeypuck/server.nix b/pkgs/servers/hockeypuck/server.nix
index 5a95f227832..cf48fd5716c 100644
--- a/pkgs/servers/hockeypuck/server.nix
+++ b/pkgs/servers/hockeypuck/server.nix
@@ -1,4 +1,4 @@
-{ lib, buildGoModule, fetchFromGitHub }:
+{ lib, buildGoModule, fetchFromGitHub, nixosTests }:
 
 let
   sources = (import ./sources.nix) { inherit fetchFromGitHub; };
@@ -10,6 +10,8 @@ buildGoModule {
   vendorSha256 = null;
   doCheck = false; # Uses networking for tests
 
+  passthru.tests = nixosTests.hockeypuck;
+
   meta = with lib; {
     description = "OpenPGP Key Server";
     homepage = "https://github.com/hockeypuck/hockeypuck";