Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / networking / sniproxy / default.nix
blob8d2b619ab718988b02391418b0bfe19cb9b500e9
1 { lib, stdenv, fetchFromGitHub, autoreconfHook, gettext, libev, pcre, pkg-config, udns }:
3 stdenv.mkDerivation rec {
4   pname = "sniproxy";
5   version = "0.6.1";
7   src = fetchFromGitHub {
8     owner = "dlundquist";
9     repo = "sniproxy";
10     rev = version;
11     sha256 = "sha256-htM9CrzaGnn1dnsWQ+0V6N65Og7rsFob3BlSc4UGfFU=";
12   };
14   nativeBuildInputs = [ autoreconfHook pkg-config ];
15   buildInputs = [ gettext libev pcre udns ];
17   meta = with lib; {
18     homepage = "https://github.com/dlundquist/sniproxy";
19     description = "Transparent TLS and HTTP layer 4 proxy with SNI support";
20     license = licenses.bsd2;
21     maintainers = with maintainers; [ womfoo raitobezarius ];
22     platforms = platforms.linux;
23   };