nixpkgs/pkgs/servers/hitch/default.nix

26 lines
742 B
Nix
Raw Normal View History

2020-07-03 17:58:33 +00:00
{ stdenv, fetchurl, docutils, libev, openssl, pkgconfig, nixosTests }:
stdenv.mkDerivation rec {
2020-07-03 16:06:11 +00:00
version = "1.6.0";
pname = "hitch";
src = fetchurl {
url = "https://hitch-tls.org/source/${pname}-${version}.tar.gz";
2020-07-03 16:06:11 +00:00
sha256 = "01n70yf8hx42jb801jv5q1xhrpqxyjnqhd98hjf81lvxpd5fnisf";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ docutils libev openssl ];
outputs = [ "out" "doc" "man" ];
2020-07-03 17:58:33 +00:00
passthru.tests.hitch = nixosTests.hitch;
meta = with stdenv.lib; {
description = "Hitch is a libev-based high performance SSL/TLS proxy by Varnish Software";
homepage = "https://hitch-tls.org/";
license = licenses.bsd2;
maintainers = [ maintainers.jflanglois ];
platforms = platforms.linux;
};
}