guix-commits
[Top][All Lists]
Advanced

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

22/28: gnu: RHash: Update to 1.3.9.


From: guix-commits
Subject: 22/28: gnu: RHash: Update to 1.3.9.
Date: Wed, 8 Jan 2020 15:58:49 -0500 (EST)

mbakke pushed a commit to branch core-updates
in repository guix.

commit 23c883ef832d45387bb2a11451411a76be0c034f
Author: Marius Bakke <address@hidden>
AuthorDate: Wed Jan 8 17:01:40 2020 +0100

    gnu: RHash: Update to 1.3.9.
    
    * gnu/packages/crypto.scm (rhash): Update to 1.3.9.
    [arguments]: Add phase 'patch-/bin/sh'.
---
 gnu/packages/crypto.scm | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm
index b63e322..91fbe6a 100644
--- a/gnu/packages/crypto.scm
+++ b/gnu/packages/crypto.scm
@@ -699,7 +699,7 @@ BLAKE.")
 (define-public rhash
   (package
     (name "rhash")
-    (version "1.3.8")
+    (version "1.3.9")
     (source
      (origin
        (method git-fetch)
@@ -709,7 +709,7 @@ BLAKE.")
        (file-name (git-file-name name version))
        (sha256
         (base32
-         "0i00wl63hn80g0s9gdi772gchbghwgkvn4nbb5227y2wwy30yyi2"))))
+         "06i49x1l21h2q7pfnf4crbmjyg8b9ad0qs10ywyyn5sjpi0c21wq"))))
     (build-system gnu-build-system)
     (arguments
      `(#:make-flags
@@ -724,6 +724,11 @@ BLAKE.")
            (lambda* (#:key outputs #:allow-other-keys)
              (invoke "./configure"
                      (string-append "--prefix=" (assoc-ref outputs "out")))))
+         (add-before 'check 'patch-/bin/sh
+           (lambda _
+             (substitute* "Makefile"
+               (("/bin/sh") (which "sh")))
+             #t))
          (add-after 'install 'install-library-extras
            (lambda* (#:key make-flags #:allow-other-keys)
              (apply invoke



reply via email to

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