nixpkgs/pkgs/servers/coturn/default.nix

29 lines
643 B
Nix
Raw Normal View History

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