2018-05-01 11:36:36 +02:00
|
|
|
{ stdenv, fetchurl, docutils, libev, openssl, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
2020-07-03 18:06:11 +02:00
|
|
|
version = "1.6.0";
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "hitch";
|
2018-05-01 11:36:36 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "https://hitch-tls.org/source/${pname}-${version}.tar.gz";
|
2020-07-03 18:06:11 +02:00
|
|
|
sha256 = "01n70yf8hx42jb801jv5q1xhrpqxyjnqhd98hjf81lvxpd5fnisf";
|
2018-05-01 11:36:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ docutils libev openssl ];
|
|
|
|
|
|
|
|
outputs = [ "out" "doc" "man" ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Hitch is a libev-based high performance SSL/TLS proxy by Varnish Software";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://hitch-tls.org/";
|
2018-05-01 11:36:36 +02:00
|
|
|
license = licenses.bsd2;
|
|
|
|
maintainers = [ maintainers.jflanglois ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|