aboutsummaryrefslogtreecommitdiff
path: root/pkgs/servers/hitch
diff options
context:
space:
mode:
authorJulien Langlois <yourstruly@julienlanglois.me>2020-07-03 13:58:33 -0400
committerJulien Langlois <yourstruly@julienlanglois.me>2020-07-03 14:22:22 -0400
commit333c05615938d71f70ef690ba7bc1badc1a49234 (patch)
treee39f053d84ff34114635a42858e3695fc8f2a54c /pkgs/servers/hitch
parent6ab9c60bbe4063649729a07d9fbf38ea6f08e9a2 (diff)
hitch: add passthru.tests
Diffstat (limited to 'pkgs/servers/hitch')
-rw-r--r--pkgs/servers/hitch/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/servers/hitch/default.nix b/pkgs/servers/hitch/default.nix
index 243f4af7d3a6..89aa63f35bdc 100644
--- a/pkgs/servers/hitch/default.nix
+++ b/pkgs/servers/hitch/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, docutils, libev, openssl, pkgconfig }:
+{ stdenv, fetchurl, docutils, libev, openssl, pkgconfig, nixosTests }:
stdenv.mkDerivation rec {
version = "1.6.0";
pname = "hitch";
@@ -13,6 +13,8 @@ stdenv.mkDerivation rec {
outputs = [ "out" "doc" "man" ];
+ passthru.tests.hitch = nixosTests.hitch;
+
meta = with stdenv.lib; {
description = "Hitch is a libev-based high performance SSL/TLS proxy by Varnish Software";
homepage = "https://hitch-tls.org/";