From 4ae459c3ac138b3fdf1137bf7adb410e516afed2 Mon Sep 17 00:00:00 2001 From: Travis Athougies Date: Mon, 29 Aug 2022 20:51:38 -0700 Subject: [PATCH] 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. --- pkgs/servers/coturn/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/servers/coturn/default.nix b/pkgs/servers/coturn/default.nix index 695c881e9f66..bc347398115f 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 = [