nixpkgs/pkgs/servers/coturn/default.nix

28 lines
633 B
Nix
Raw Normal View History

2016-06-21 10:59:29 +00:00
{ stdenv, fetchFromGitHub, openssl, libevent }:
let inherit (stdenv.lib) optional; in
2016-06-21 10:59:29 +00:00
stdenv.mkDerivation rec {
name = "coturn-${version}";
version = "4.5.0.6";
2016-06-21 10:59:29 +00:00
src = fetchFromGitHub {
owner = "coturn";
repo = "coturn";
rev = "${version}";
sha256 = "084c3zgwmmz4s6211i5jbkzsn13703lsg7vhc2cpacazq4sgsrhb";
2016-06-21 10:59:29 +00:00
};
buildInputs = [ openssl libevent ];
patches = [ ./pure-configure.patch ];
meta = with stdenv.lib; {
homepage = http://coturn.net/;
license = with licenses; [ bsd3 ];
description = "A TURN server";
platforms = platforms.all;
maintainers = [ maintainers.ralith ];
};
}