mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
ghostunnel: init at 1.5.3
A simple TLS proxy with mutual authentication support for securing non-TLS backend applications.
This commit is contained in:
parent
d61cf2be36
commit
76993d0b76
26
pkgs/tools/networking/ghostunnel/default.nix
Normal file
26
pkgs/tools/networking/ghostunnel/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{
|
||||
buildGoModule,
|
||||
fetchFromGitHub,
|
||||
lib,
|
||||
}:
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -4855,6 +4855,8 @@ in
|
||||
|
||||
ghorg = callPackage ../applications/version-management/git-and-tools/ghorg { };
|
||||
|
||||
ghostunnel = callPackage ../tools/networking/ghostunnel { };
|
||||
|
||||
ghq = callPackage ../applications/version-management/git-and-tools/ghq { };
|
||||
|
||||
ghr = callPackage ../applications/version-management/git-and-tools/ghr { };
|
||||
|
Loading…
Reference in New Issue
Block a user