1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/servers/coturn/default.nix

29 lines
643 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, fetchpatch, openssl, libevent }:
2016-06-21 11:59:29 +01:00
stdenv.mkDerivation rec {
pname = "coturn";
2020-06-30 04:46:31 +01:00
version = "4.5.1.3";
2016-06-21 11:59:29 +01:00
src = fetchFromGitHub {
owner = "coturn";
repo = "coturn";
2019-09-09 00:38:31 +01:00
rev = version;
2020-06-30 04:46:31 +01:00
sha256 = "1801931k4qdvc7jvaqxvjyhbh1xsvjz0pjajf6xc222n4ggar1q5";
2016-06-21 11:59:29 +01:00
};
buildInputs = [ openssl libevent ];
patches = [
./pure-configure.patch
];
2016-06-21 11:59:29 +01:00
meta = with stdenv.lib; {
homepage = "https://coturn.net/";
2016-06-21 11:59:29 +01:00
license = with licenses; [ bsd3 ];
description = "A TURN server";
platforms = platforms.all;
2018-10-21 21:29:02 +01:00
broken = stdenv.isDarwin; # 2018-10-21
2016-06-21 11:59:29 +01:00
maintainers = [ maintainers.ralith ];
};
}