nixpkgs/pkgs/servers/coturn/default.nix

27 lines
623 B
Nix
Raw Normal View History

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