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.
This commit is contained in:
parent
05a7d8eda2
commit
4ae459c3ac
1 changed files with 2 additions and 0 deletions
|
@ -8,6 +8,7 @@
|
|||
, libprom
|
||||
, libpromhttp
|
||||
, libmicrohttpd
|
||||
, sqlite
|
||||
, nixosTests
|
||||
}:
|
||||
|
||||
|
@ -29,6 +30,7 @@ stdenv.mkDerivation rec {
|
|||
libprom
|
||||
libpromhttp
|
||||
libmicrohttpd
|
||||
sqlite.dev
|
||||
];
|
||||
|
||||
patches = [
|
||||
|
|
Loading…
Reference in a new issue