summary refs log blame commit diff
path: root/pkgs/servers/coturn/default.nix
blob: 2fbd0bbfb3da58353ae72375130b91900ae163c8 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                               
                         
                   
                      



                         
                  
                                                                    






                                       
                                   


                                      
                                          


                                         
{ stdenv, fetchFromGitHub, openssl, libevent }:

stdenv.mkDerivation rec {
  pname = "coturn";
  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 = https://coturn.net/;
    license = with licenses; [ bsd3 ];
    description = "A TURN server";
    platforms = platforms.all;
    broken = stdenv.isDarwin; # 2018-10-21
    maintainers = [ maintainers.ralith ];
  };
}