nixpkgs/pkgs/servers/coturn/default.nix

27 lines
623 B
Nix
Raw Normal View History

2016-06-21 12:59:29 +02:00
{ stdenv, fetchFromGitHub, openssl, libevent }:
stdenv.mkDerivation rec {
pname = "coturn";
version = "4.5.1.1";
2016-06-21 12:59:29 +02:00
src = fetchFromGitHub {
owner = "coturn";
repo = "coturn";
2019-09-09 01:38:31 +02:00
rev = version;
sha256 = "12x604lgva1d3g4wvl3f66rdj6lkjk5cqr0l3xas33xgzgm13pwr";
2016-06-21 12:59:29 +02:00
};
buildInputs = [ openssl libevent ];
patches = [ ./pure-configure.patch ];
meta = with stdenv.lib; {
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 ];
};
}