2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, fetchpatch, openssl, libevent }:
|
2016-06-21 12:59:29 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "coturn";
|
2020-06-30 05:46:31 +02:00
|
|
|
version = "4.5.1.3";
|
2016-06-21 12:59:29 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "coturn";
|
|
|
|
repo = "coturn";
|
2019-09-09 01:38:31 +02:00
|
|
|
rev = version;
|
2020-06-30 05:46:31 +02:00
|
|
|
sha256 = "1801931k4qdvc7jvaqxvjyhbh1xsvjz0pjajf6xc222n4ggar1q5";
|
2016-06-21 12:59:29 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ openssl libevent ];
|
|
|
|
|
2020-04-29 01:11:43 +02:00
|
|
|
patches = [
|
|
|
|
./pure-configure.patch
|
|
|
|
];
|
2016-06-21 12:59:29 +02:00
|
|
|
|
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
|
2016-06-21 12:59:29 +02:00
|
|
|
maintainers = [ maintainers.ralith ];
|
|
|
|
};
|
|
|
|
}
|