3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/networking/ghostunnel/default.nix

30 lines
719 B
Nix
Raw Normal View History

{
buildGoModule,
fetchFromGitHub,
lib,
2021-05-20 00:15:28 +01:00
nixosTests,
}:
buildGoModule rec {
pname = "ghostunnel";
version = "1.5.3";
src = fetchFromGitHub {
owner = "ghostunnel";
repo = "ghostunnel";
rev = "v${version}";
sha256 = "15rmd89j7sfpznzznss899smizbyshprsrvsdmrbhb617myd9fpy";
};
vendorSha256 = "1i95fx4a0fh6id6iy6afbva4pazr7ym6sbwi9r7la6gxzyncd023";
meta = with lib; {
description = "A simple TLS proxy with mutual authentication support for securing non-TLS backend applications";
homepage = "https://github.com/ghostunnel/ghostunnel#readme";
license = licenses.asl20;
maintainers = with maintainers; [ roberth ];
};
2021-05-20 00:15:28 +01:00
passthru.tests.nixos = nixosTests.ghostunnel;
}