gnu: sslh: Don't use unstable tarball.

* gnu/packages/networking.scm (sslh)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
This commit is contained in:
Tobias Geerinckx-Rice 2019-03-14 13:12:37 +01:00
parent 625697ea60
commit 925926bab1
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 9 additions and 8 deletions

View File

@ -1227,14 +1227,15 @@ library remains flexible, portable, and easily embeddable.")
(package (package
(name "sslh") (name "sslh")
(version "1.19c") (version "1.19c")
(source (origin (source
(method url-fetch) (origin
(uri (string-append "https://github.com/yrutschle/sslh/archive/v" (method git-fetch)
version ".tar.gz")) (uri (git-reference
(file-name (string-append name "-" version ".tar.gz")) (url "https://github.com/yrutschle/sslh.git")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32 "14x3n25n9md0sw8cda9m5bd8r96xpw1vdkapklw4mxgfcz1k2kxq"))))
"0pd8hifa9h0rm7vms3k6ic1k29xigrlv2idc5wgcafmb1v1243di"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(native-inputs (native-inputs
`(;; Test dependencies. `(;; Test dependencies.