mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: sslh: Update to 1.19b.
* gnu/packages/networking.scm (sslh): Update to 1.19b. [inputs]: Add pcre. [home-page]: Update and use HTTPS.
This commit is contained in:
parent
d2ea806436
commit
7eaa37a19d
1 changed files with 5 additions and 4 deletions
|
@ -1025,7 +1025,7 @@ (define-public enet
|
||||||
(define-public sslh
|
(define-public sslh
|
||||||
(package
|
(package
|
||||||
(name "sslh")
|
(name "sslh")
|
||||||
(version "1.18")
|
(version "1.19b")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://github.com/yrutschle/sslh/archive/v"
|
(uri (string-append "https://github.com/yrutschle/sslh/archive/v"
|
||||||
|
@ -1033,10 +1033,10 @@ (define-public sslh
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1vzw7a7s9lhspbn5zn3hw8hir4pkjgbd68yys4hfsnjp1h7bzjpn"))))
|
"0p0zfy5ifzj7508zqidgkf8g43frm7l5xcs5s6v7132lypcsbd4k"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(;; Tests dependencies.
|
`(;; Test dependencies.
|
||||||
("lcov" ,lcov)
|
("lcov" ,lcov)
|
||||||
("perl" ,perl)
|
("perl" ,perl)
|
||||||
("perl-io-socket-inet6" ,perl-io-socket-inet6)
|
("perl-io-socket-inet6" ,perl-io-socket-inet6)
|
||||||
|
@ -1046,6 +1046,7 @@ (define-public sslh
|
||||||
(inputs
|
(inputs
|
||||||
`(("libcap" ,libcap)
|
`(("libcap" ,libcap)
|
||||||
("libconfig" ,libconfig)
|
("libconfig" ,libconfig)
|
||||||
|
("pcre" ,pcre)
|
||||||
("tcp-wrappers" ,tcp-wrappers)))
|
("tcp-wrappers" ,tcp-wrappers)))
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases
|
'(#:phases
|
||||||
|
@ -1075,7 +1076,7 @@ (define-public sslh
|
||||||
"USELIBWRAP=1"
|
"USELIBWRAP=1"
|
||||||
(string-append "PREFIX=" (assoc-ref %outputs "out")))
|
(string-append "PREFIX=" (assoc-ref %outputs "out")))
|
||||||
#:test-target "test"))
|
#:test-target "test"))
|
||||||
(home-page "http://www.rutschle.net/tech/sslh.shtml")
|
(home-page "https://www.rutschle.net/tech/sslh/README.html")
|
||||||
(synopsis "Applicative network protocol demultiplexer")
|
(synopsis "Applicative network protocol demultiplexer")
|
||||||
(description
|
(description
|
||||||
"sslh is a network protocol demultiplexer. It acts like a switchboard,
|
"sslh is a network protocol demultiplexer. It acts like a switchboard,
|
||||||
|
|
Loading…
Reference in a new issue