guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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


From: Arun Isaac
Subject: 01/01: gnu: rhash: Remove `outputs' argument from phases.
Date: Sat, 24 Feb 2018 06:48:57 -0500 (EST)

arunisaac pushed a commit to branch master
in repository guix.

commit 952a20d2a2ca8f39493df40ee2fd52e12442aa7c
Author: Arun Isaac <address@hidden>
Date:   Sat Feb 24 17:00:22 2018 +0530

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

diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm
index 9ad369a..695f6ca 100644
--- a/gnu/packages/crypto.scm
+++ b/gnu/packages/crypto.scm
@@ -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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]