summary refs log tree commit diff
path: root/pkgs/servers/coturn/default.nix
blob: f83ef4cef38816d1897c2a556bf74af9cacc9502 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv, fetchFromGitHub, openssl, libevent }:

let inherit (stdenv.lib) optional; in

stdenv.mkDerivation rec {
  name = "coturn-${version}";
  version = "4.5.0.7";

  src = fetchFromGitHub {
    owner = "coturn";
    repo = "coturn";
    rev = "${version}";
    sha256 = "1781fx8lqgc54j973xzgq9d7k3g2j03va82jb4217gd3a93pa65l";
  };

  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 ];
  };
}