nixpkgs/pkgs/servers/hitch/default.nix
2020-11-02 09:37:15 +00:00

26 lines
731 B
Nix

{ stdenv, fetchurl, docutils, libev, openssl, pkgconfig, nixosTests }:
stdenv.mkDerivation rec {
version = "1.7.0";
pname = "hitch";
src = fetchurl {
url = "https://hitch-tls.org/source/${pname}-${version}.tar.gz";
sha256 = "1i75giwyr66ip8xsvk3gg5xdbxnmcabgxz8dqi06c58mw7qzhzn9";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ docutils libev openssl ];
outputs = [ "out" "doc" "man" ];
passthru.tests.hitch = nixosTests.hitch;
meta = with stdenv.lib; {
description = "Libev-based high performance SSL/TLS proxy by Varnish Software";
homepage = "https://hitch-tls.org/";
license = licenses.bsd2;
maintainers = [ maintainers.jflanglois ];
platforms = platforms.linux;
};
}