summary refs log tree commit diff
path: root/pkgs/servers/coturn
diff options
context:
space:
mode:
authormatthewcroughan <matt@croughan.sh>2021-07-03 08:33:39 +0100
committermatthewcroughan <matt@croughan.sh>2021-07-03 08:33:39 +0100
commit5df1e9d93d98500129b5d0179721e7b6ba787707 (patch)
treed13847934dc32a44363e14bf359e68e5177e35d1 /pkgs/servers/coturn
parent971e37dc07266ae61104e3a246cdfd81e867f089 (diff)
downloadnixpkgs-5df1e9d93d98500129b5d0179721e7b6ba787707.tar
nixpkgs-5df1e9d93d98500129b5d0179721e7b6ba787707.tar.gz
nixpkgs-5df1e9d93d98500129b5d0179721e7b6ba787707.tar.bz2
nixpkgs-5df1e9d93d98500129b5d0179721e7b6ba787707.tar.lz
nixpkgs-5df1e9d93d98500129b5d0179721e7b6ba787707.tar.xz
nixpkgs-5df1e9d93d98500129b5d0179721e7b6ba787707.tar.zst
nixpkgs-5df1e9d93d98500129b5d0179721e7b6ba787707.zip
coturn: add test for static-auth-secret-file
Adds passthru.tests.coturn = nixosTests.coturn;
Diffstat (limited to 'pkgs/servers/coturn')
-rw-r--r--pkgs/servers/coturn/default.nix3
1 files changed, 3 insertions, 0 deletions
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 ];