mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: rhash: Remove `outputs' argument from phases.
* gnu/packages/crypto.scm (rhash): Remove unnecessary `outputs' argument from custom phases.
This commit is contained in:
parent
8492334dc9
commit
952a20d2a2
1 changed files with 3 additions and 3 deletions
|
@ -692,16 +692,16 @@ (define-public rhash
|
|||
(string-append (assoc-ref outputs "out") "/etc")))
|
||||
#t))
|
||||
(add-after 'build 'build-library
|
||||
(lambda* (#:key outputs make-flags #:allow-other-keys)
|
||||
(lambda* (#:key make-flags #:allow-other-keys)
|
||||
(apply invoke "make" "lib-shared" make-flags)))
|
||||
(add-after 'install 'install-library
|
||||
(lambda* (#:key outputs make-flags #:allow-other-keys)
|
||||
(lambda* (#:key make-flags #:allow-other-keys)
|
||||
(apply invoke "make" "install-lib-shared" make-flags)
|
||||
(apply invoke
|
||||
"make" "-C" "librhash" "install-headers"
|
||||
"install-so-link" make-flags)))
|
||||
(add-after 'check 'check-library
|
||||
(lambda* (#:key outputs make-flags #:allow-other-keys)
|
||||
(lambda* (#:key make-flags #:allow-other-keys)
|
||||
(apply invoke "make" "test-shared-lib" make-flags))))))
|
||||
(home-page "https://sourceforge.net/projects/rhash/")
|
||||
(synopsis "Utility for computing hash sums")
|
||||
|
|
Loading…
Reference in a new issue