mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 14:40:21 -05:00
gnu: hss: Update to 1.9.
* gnu/packages/ssh.scm (hss): Update to 1.9. [arguments]: Don't explicitly return #t from phases.
This commit is contained in:
parent
921b6f07fa
commit
b8d5cbb767
1 changed files with 4 additions and 5 deletions
|
@ -80,16 +80,16 @@ (define-module (gnu packages ssh)
|
|||
(define-public hss
|
||||
(package
|
||||
(name "hss")
|
||||
(version "1.8")
|
||||
(version "1.9")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/six-ddc/hss")
|
||||
(commit (string-append "v" version))))
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1rpysj65j9ls30bf2c5k5hykzzjfknrihs58imp178bx1wqzw4jl"))))
|
||||
"12578xhvkg70ma411yh8nbpcpnys420bnm9g0dzypb0vn3jxpz8q"))))
|
||||
(inputs
|
||||
(list readline))
|
||||
(arguments
|
||||
|
@ -103,8 +103,7 @@ (define-public hss
|
|||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||
(substitute* "Makefile"
|
||||
(("/usr/local/opt/readline")
|
||||
(assoc-ref inputs "readline")))
|
||||
#t))
|
||||
(assoc-ref inputs "readline")))))
|
||||
(delete 'configure)))) ; no configure script
|
||||
(build-system gnu-build-system)
|
||||
(home-page "https://github.com/six-ddc/hss/")
|
||||
|
|
Loading…
Reference in a new issue