From 5df1e9d93d98500129b5d0179721e7b6ba787707 Mon Sep 17 00:00:00 2001 From: matthewcroughan Date: Sat, 3 Jul 2021 08:33:39 +0100 Subject: [PATCH] coturn: add test for static-auth-secret-file Adds passthru.tests.coturn = nixosTests.coturn; --- pkgs/servers/coturn/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/servers/coturn/default.nix b/pkgs/servers/coturn/default.nix index 73b1ba01844..d076f763bf9 100644 --- a/pkgs/servers/coturn/default.nix +++ b/pkgs/servers/coturn/default.nix @@ -8,6 +8,7 @@ , libprom , libpromhttp , libmicrohttpd +, nixosTests }: stdenv.mkDerivation rec { @@ -34,6 +35,8 @@ stdenv.mkDerivation rec { ./pure-configure.patch ]; + passthru.tests.coturn = nixosTests.coturn; + meta = with lib; { homepage = "https://coturn.net/"; license = with licenses; [ bsd3 ];