about summary refs log tree commit diff
path: root/pkgs/servers/coturn
diff options
context:
space:
mode:
authorTravis Athougies <travis@athougies.net>2022-08-29 20:51:38 -0700
committerGitHub <noreply@github.com>2022-08-29 20:51:38 -0700
commit4ae459c3ac138b3fdf1137bf7adb410e516afed2 (patch)
treebb22cbbe3b4fac1d9d8d0d89a23b8e7ee0bd694d /pkgs/servers/coturn
parent05a7d8eda297c7599c4946936be550f7504da82c (diff)
coturn: enable sqlite support
Coturn uses SQL databases to store authentication credentials. Most users of coturn are going to expect sqlite support, since that's the default db

Without this being available during build, the default configure script disabled SQLite support, providing a coturn on NixOS that does not behave in the default manner.
Diffstat (limited to 'pkgs/servers/coturn')
-rw-r--r--pkgs/servers/coturn/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/servers/coturn/default.nix b/pkgs/servers/coturn/default.nix
index 695c881e9f667..bc347398115ff 100644
--- a/pkgs/servers/coturn/default.nix
+++ b/pkgs/servers/coturn/default.nix
@@ -8,6 +8,7 @@
 , libprom
 , libpromhttp
 , libmicrohttpd
+, sqlite
 , nixosTests
 }:
 
@@ -29,6 +30,7 @@ stdenv.mkDerivation rec {
     libprom
     libpromhttp
     libmicrohttpd
+    sqlite.dev
   ];
 
   patches = [