2021-01-11 11:27:59 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, fetchpatch
|
|
|
|
, openssl
|
|
|
|
, libevent
|
|
|
|
, pkg-config
|
|
|
|
, libprom
|
|
|
|
, libpromhttp
|
|
|
|
, libmicrohttpd
|
2021-07-03 09:33:39 +02:00
|
|
|
, nixosTests
|
2021-01-11 11:27:59 +01:00
|
|
|
}:
|
2016-06-21 12:59:29 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "coturn";
|
2021-01-11 11:27:59 +01:00
|
|
|
version = "4.5.2";
|
2016-06-21 12:59:29 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "coturn";
|
|
|
|
repo = "coturn";
|
2019-09-09 01:38:31 +02:00
|
|
|
rev = version;
|
2021-01-11 11:27:59 +01:00
|
|
|
sha256 = "1s7ncc82ny4bb3qkn3fqr0144xsr7h2y8xmzsf5037h6j8f7j3v8";
|
2016-06-21 12:59:29 +02:00
|
|
|
};
|
|
|
|
|
2021-01-11 11:27:59 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [
|
|
|
|
openssl
|
|
|
|
libevent
|
|
|
|
libprom
|
|
|
|
libpromhttp
|
|
|
|
libmicrohttpd
|
|
|
|
];
|
2016-06-21 12:59:29 +02:00
|
|
|
|
2020-04-29 01:11:43 +02:00
|
|
|
patches = [
|
|
|
|
./pure-configure.patch
|
|
|
|
];
|
2016-06-21 12:59:29 +02:00
|
|
|
|
2021-07-03 09:33:39 +02:00
|
|
|
passthru.tests.coturn = nixosTests.coturn;
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://coturn.net/";
|
2016-06-21 12:59:29 +02:00
|
|
|
license = with licenses; [ bsd3 ];
|
|
|
|
description = "A TURN server";
|
|
|
|
platforms = platforms.all;
|
2018-10-21 22:29:02 +02:00
|
|
|
broken = stdenv.isDarwin; # 2018-10-21
|
2021-01-11 11:27:59 +01:00
|
|
|
maintainers = with maintainers; [ ralith _0x4A6F ];
|
2016-06-21 12:59:29 +02:00
|
|
|
};
|
|
|
|
}
|