summary refs log tree commit diff
path: root/pkgs/tools/networking/ghostunnel/default.nix
diff options
context:
space:
mode:
authorRobert Hensing <robert@roberthensing.nl>2021-05-20 01:06:23 +0200
committerRobert Hensing <robert@roberthensing.nl>2021-05-20 10:41:52 +0200
commit76993d0b76df5d334a0184c80d0ccbdda0390897 (patch)
tree452c072ac0e4e763d044e97a2c6f072614b23a50 /pkgs/tools/networking/ghostunnel/default.nix
parentd61cf2be364d365d04fdb4ec4293055f88b1f78d (diff)
downloadnixpkgs-76993d0b76df5d334a0184c80d0ccbdda0390897.tar
nixpkgs-76993d0b76df5d334a0184c80d0ccbdda0390897.tar.gz
nixpkgs-76993d0b76df5d334a0184c80d0ccbdda0390897.tar.bz2
nixpkgs-76993d0b76df5d334a0184c80d0ccbdda0390897.tar.lz
nixpkgs-76993d0b76df5d334a0184c80d0ccbdda0390897.tar.xz
nixpkgs-76993d0b76df5d334a0184c80d0ccbdda0390897.tar.zst
nixpkgs-76993d0b76df5d334a0184c80d0ccbdda0390897.zip
ghostunnel: init at 1.5.3
A simple TLS proxy with mutual authentication support
for securing non-TLS backend applications.
Diffstat (limited to 'pkgs/tools/networking/ghostunnel/default.nix')
-rw-r--r--pkgs/tools/networking/ghostunnel/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/tools/networking/ghostunnel/default.nix b/pkgs/tools/networking/ghostunnel/default.nix
new file mode 100644
index 00000000000..eda349e6ad6
--- /dev/null
+++ b/pkgs/tools/networking/ghostunnel/default.nix
@@ -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 ];
+  };
+}