nixpkgs/pkgs/servers/hitch/default.nix

26 lines
731 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, docutils, libev, openssl, pkg-config, nixosTests }:
stdenv.mkDerivation rec {
2020-11-02 09:37:15 +00:00
version = "1.7.0";
pname = "hitch";
src = fetchurl {
url = "https://hitch-tls.org/source/${pname}-${version}.tar.gz";
2020-11-02 09:37:15 +00:00
sha256 = "1i75giwyr66ip8xsvk3gg5xdbxnmcabgxz8dqi06c58mw7qzhzn9";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ docutils libev openssl ];
outputs = [ "out" "doc" "man" ];
2020-07-03 17:58:33 +00:00
passthru.tests.hitch = nixosTests.hitch;
meta = with 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;
};
}