gnu: rhash: Remove `outputs' argument from phases.

* gnu/packages/crypto.scm (rhash): Remove unnecessary `outputs' argument from
custom phases.
master
Arun Isaac 2018-02-24 17:00:22 +05:30
parent 8492334dc9
commit 952a20d2a2
No known key found for this signature in database
GPG Key ID: 2E25EE8B61802BB3
1 changed files with 3 additions and 3 deletions

View File

@ -692,16 +692,16 @@ BLAKE.")
(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")