~ruther/guix-local

952a20d2a2ca8f39493df40ee2fd52e12442aa7c — Arun Isaac 8 years ago 8492334
gnu: rhash: Remove `outputs' argument from phases.

* gnu/packages/crypto.scm (rhash): Remove unnecessary `outputs' argument from
custom phases.
1 files changed, 3 insertions(+), 3 deletions(-)

M gnu/packages/crypto.scm
M gnu/packages/crypto.scm => gnu/packages/crypto.scm +3 -3
@@ 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")