tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
sslh: 1.19c -> 1.20
Franz Pletz
7 years ago
20af37e3
8f1e30e0
+7
-5
1 changed file
expand all
collapse all
unified
split
pkgs
servers
sslh
default.nix
+7
-5
pkgs/servers/sslh/default.nix
···
2
3
stdenv.mkDerivation rec {
4
name = "sslh-${version}";
5
-
version = "1.19c";
6
7
src = fetchurl {
8
url = "https://www.rutschle.net/tech/sslh/sslh-v${version}.tar.gz";
9
-
sha256 = "1wvvqj9r293skgqi28q4ixz7zwf301h1bf514p41xbi7ifldy4dv";
10
};
11
12
postPatch = "patchShebangs *.sh";
13
14
buildInputs = [ libcap libconfig perl tcp_wrappers pcre ];
15
16
-
makeFlags = "USELIBCAP=1 USELIBWRAP=1";
17
18
-
installFlags = "PREFIX=$(out)";
0
0
19
20
meta = with stdenv.lib; {
21
description = "Applicative Protocol Multiplexer (e.g. share SSH and HTTPS on the same port)";
22
license = licenses.gpl2Plus;
23
-
homepage = http://www.rutschle.net/tech/sslh.shtml;
24
maintainers = with maintainers; [ koral fpletz ];
25
platforms = platforms.all;
26
};
···
2
3
stdenv.mkDerivation rec {
4
name = "sslh-${version}";
5
+
version = "1.20";
6
7
src = fetchurl {
8
url = "https://www.rutschle.net/tech/sslh/sslh-v${version}.tar.gz";
9
+
sha256 = "05jihpjxx094h7hqzgd9v5jmy77ipwrakzzmjyfvpdzw3h59px57";
10
};
11
12
postPatch = "patchShebangs *.sh";
13
14
buildInputs = [ libcap libconfig perl tcp_wrappers pcre ];
15
16
+
makeFlags = [ "USELIBCAP=1" "USELIBWRAP=1" ];
17
18
+
installFlags = [ "PREFIX=$(out)" ];
19
+
20
+
hardeningDisable = [ "format" ];
21
22
meta = with stdenv.lib; {
23
description = "Applicative Protocol Multiplexer (e.g. share SSH and HTTPS on the same port)";
24
license = licenses.gpl2Plus;
25
+
homepage = https://www.rutschle.net/tech/sslh/README.html;
26
maintainers = with maintainers; [ koral fpletz ];
27
platforms = platforms.all;
28
};