sslh: 1.19c -> 1.20
This commit is contained in:
parent
8f1e30e0fd
commit
20af37e300
@ -2,25 +2,27 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "sslh-${version}";
|
name = "sslh-${version}";
|
||||||
version = "1.19c";
|
version = "1.20";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://www.rutschle.net/tech/sslh/sslh-v${version}.tar.gz";
|
url = "https://www.rutschle.net/tech/sslh/sslh-v${version}.tar.gz";
|
||||||
sha256 = "1wvvqj9r293skgqi28q4ixz7zwf301h1bf514p41xbi7ifldy4dv";
|
sha256 = "05jihpjxx094h7hqzgd9v5jmy77ipwrakzzmjyfvpdzw3h59px57";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = "patchShebangs *.sh";
|
postPatch = "patchShebangs *.sh";
|
||||||
|
|
||||||
buildInputs = [ libcap libconfig perl tcp_wrappers pcre ];
|
buildInputs = [ libcap libconfig perl tcp_wrappers pcre ];
|
||||||
|
|
||||||
makeFlags = "USELIBCAP=1 USELIBWRAP=1";
|
makeFlags = [ "USELIBCAP=1" "USELIBWRAP=1" ];
|
||||||
|
|
||||||
installFlags = "PREFIX=$(out)";
|
installFlags = [ "PREFIX=$(out)" ];
|
||||||
|
|
||||||
|
hardeningDisable = [ "format" ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Applicative Protocol Multiplexer (e.g. share SSH and HTTPS on the same port)";
|
description = "Applicative Protocol Multiplexer (e.g. share SSH and HTTPS on the same port)";
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
homepage = http://www.rutschle.net/tech/sslh.shtml;
|
homepage = https://www.rutschle.net/tech/sslh/README.html;
|
||||||
maintainers = with maintainers; [ koral fpletz ];
|
maintainers = with maintainers; [ koral fpletz ];
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user