about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/sslh/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/servers/sslh/default.nix')
-rw-r--r--nixpkgs/pkgs/servers/sslh/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/servers/sslh/default.nix b/nixpkgs/pkgs/servers/sslh/default.nix
new file mode 100644
index 000000000000..455409557592
--- /dev/null
+++ b/nixpkgs/pkgs/servers/sslh/default.nix
@@ -0,0 +1,29 @@
+{ stdenv, fetchurl, libcap, libconfig, perl, tcp_wrappers, pcre }:
+
+stdenv.mkDerivation rec {
+  name = "sslh-${version}";
+  version = "1.20";
+
+  src = fetchurl {
+    url = "https://www.rutschle.net/tech/sslh/sslh-v${version}.tar.gz";
+    sha256 = "05jihpjxx094h7hqzgd9v5jmy77ipwrakzzmjyfvpdzw3h59px57";
+  };
+
+  postPatch = "patchShebangs *.sh";
+
+  buildInputs = [ libcap libconfig perl tcp_wrappers pcre ];
+
+  makeFlags = [ "USELIBCAP=1" "USELIBWRAP=1" ];
+
+  installFlags = [ "PREFIX=$(out)" ];
+
+  hardeningDisable = [ "format" ];
+
+  meta = with stdenv.lib; {
+    description = "Applicative Protocol Multiplexer (e.g. share SSH and HTTPS on the same port)";
+    license = licenses.gpl2Plus;
+    homepage = https://www.rutschle.net/tech/sslh/README.html;
+    maintainers = with maintainers; [ koral fpletz ];
+    platforms = platforms.all;
+  };
+}