nixpkgs/pkgs/servers/coturn/default.nix
John Ericson 4c0d7da183 Get rid of all with { inherit... } and just used let inherit...
The old forms presumably predates, or were made in ignorance of,
`let inherit`. This way is better style as the scoping as more lexical,
something which Nix can (or might already!) take advantage of.
2017-03-30 03:05:05 -04:00

28 lines
633 B
Nix

{ stdenv, fetchFromGitHub, openssl, libevent }:
let inherit (stdenv.lib) optional; in
stdenv.mkDerivation rec {
name = "coturn-${version}";
version = "4.5.0.3";
src = fetchFromGitHub {
owner = "coturn";
repo = "coturn";
rev = "${version}";
sha256 = "1xr4dp3p16m4rq9mdsprs6s50rnif6hk38xx9siyykgfjnwr6i9g";
};
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 ];
};
}