nixpkgs/pkgs/servers/coturn/default.nix
R. RyanTM 416a965692 coturn: 4.5.1.0 -> 4.5.1.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/coturn/versions
2019-03-10 13:17:16 +01:00

27 lines
637 B
Nix

{ stdenv, fetchFromGitHub, openssl, libevent }:
stdenv.mkDerivation rec {
name = "coturn-${version}";
version = "4.5.1.1";
src = fetchFromGitHub {
owner = "coturn";
repo = "coturn";
rev = "${version}";
sha256 = "12x604lgva1d3g4wvl3f66rdj6lkjk5cqr0l3xas33xgzgm13pwr";
};
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;
broken = stdenv.isDarwin; # 2018-10-21
maintainers = [ maintainers.ralith ];
};
}