nixpkgs/pkgs/servers/sslh/default.nix

36 lines
918 B
Nix
Raw Normal View History

2021-09-20 08:15:03 +01:00
{ lib, stdenv, fetchFromGitHub, libcap, libconfig, perl, tcp_wrappers, pcre2, nixosTests }:
2015-02-04 23:36:27 +00:00
stdenv.mkDerivation rec {
pname = "sslh";
2021-09-20 08:15:03 +01:00
version = "1.22c";
2015-02-04 23:36:27 +00:00
2021-09-20 08:15:03 +01:00
src = fetchFromGitHub {
owner = "yrutschle";
repo = pname;
rev = "v${version}";
sha256 = "sha256-A+nUWiOPoz/T5afZUzt5In01e049TgHisTF8P5Vj180=";
2015-02-04 23:36:27 +00:00
};
postPatch = "patchShebangs *.sh";
2021-09-20 08:15:03 +01:00
buildInputs = [ libcap libconfig perl tcp_wrappers pcre2 ];
2015-02-04 23:36:27 +00:00
2018-11-22 12:38:16 +00:00
makeFlags = [ "USELIBCAP=1" "USELIBWRAP=1" ];
2015-02-04 23:36:27 +00:00
2018-11-22 12:38:16 +00:00
installFlags = [ "PREFIX=$(out)" ];
hardeningDisable = [ "format" ];
2015-02-04 23:36:27 +00:00
2020-01-18 12:00:00 +00:00
passthru.tests = {
inherit (nixosTests) sslh;
};
meta = with lib; {
2015-02-04 23:36:27 +00:00
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";
2016-05-12 23:01:57 +01:00
maintainers = with maintainers; [ koral fpletz ];
2015-02-04 23:36:27 +00:00
platforms = platforms.all;
};
}