Merge pull request #109038 from 0x4A6F/master-coturn
coturn: 4.5.1.3 -> 4.5.2
This commit is contained in:
commit
14d1126756
@ -1,17 +1,34 @@
|
|||||||
{ lib, stdenv, fetchFromGitHub, fetchpatch, openssl, libevent }:
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, fetchpatch
|
||||||
|
, openssl
|
||||||
|
, libevent
|
||||||
|
, pkg-config
|
||||||
|
, libprom
|
||||||
|
, libpromhttp
|
||||||
|
, libmicrohttpd
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "coturn";
|
pname = "coturn";
|
||||||
version = "4.5.1.3";
|
version = "4.5.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "coturn";
|
owner = "coturn";
|
||||||
repo = "coturn";
|
repo = "coturn";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "1801931k4qdvc7jvaqxvjyhbh1xsvjz0pjajf6xc222n4ggar1q5";
|
sha256 = "1s7ncc82ny4bb3qkn3fqr0144xsr7h2y8xmzsf5037h6j8f7j3v8";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ openssl libevent ];
|
nativeBuildInputs = [ pkg-config ];
|
||||||
|
buildInputs = [
|
||||||
|
openssl
|
||||||
|
libevent
|
||||||
|
libprom
|
||||||
|
libpromhttp
|
||||||
|
libmicrohttpd
|
||||||
|
];
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
./pure-configure.patch
|
./pure-configure.patch
|
||||||
@ -23,6 +40,6 @@ stdenv.mkDerivation rec {
|
|||||||
description = "A TURN server";
|
description = "A TURN server";
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
broken = stdenv.isDarwin; # 2018-10-21
|
broken = stdenv.isDarwin; # 2018-10-21
|
||||||
maintainers = [ maintainers.ralith ];
|
maintainers = with maintainers; [ ralith _0x4A6F ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user