guix-commits
[Top][All Lists]
Advanced

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

16/17: gnu: marisa: Update to 0.2.6.


From: guix-commits
Subject: 16/17: gnu: marisa: Update to 0.2.6.
Date: Mon, 29 Jun 2020 10:46:38 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 9b26efdd2a541036adeb686a54f4093549b8f070
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Mon Jun 29 14:36:25 2020 +0200

    gnu: marisa: Update to 0.2.6.
    
    * gnu/packages/datastructures.scm (marisa): Update to 0.2.6.
    [source]: Use worse URL.
    [native-inputs]: Add autoconf, automake, and libtool.
---
 gnu/packages/datastructures.scm | 14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/datastructures.scm b/gnu/packages/datastructures.scm
index 0f106b7..b649f9e 100644
--- a/gnu/packages/datastructures.scm
+++ b/gnu/packages/datastructures.scm
@@ -21,6 +21,7 @@
 
 (define-module (gnu packages datastructures)
   #:use-module (gnu packages)
+  #:use-module (gnu packages autotools)
   #:use-module (gnu packages perl)
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (guix packages)
@@ -55,16 +56,19 @@ and heaps.")
 (define-public marisa
   (package
     (name "marisa")
-    (version "0.2.5")
+    (version "0.2.6")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://github.com/s-yata/marisa-trie";
-                           "/releases/download/v" version "/" name "-"
-                           version ".tar.gz"))
+       (uri (string-append "https://github.com/s-yata/marisa-trie/files/";
+                           "4832504/marisa-" version ".tar.gz"))
        (sha256
-        (base32 "19ifrcmnbr9whaaf4ly3s9ndyiq9sjqhnfkrxbz9zsb44w2n36hf"))))
+        (base32 "1pk6wmi28pa8srb4szybrwfn71jldb61c5vgxsiayxcyg1ya4qqh"))))
     (build-system gnu-build-system)
+    (native-inputs
+     `(("autoconf" ,autoconf)
+       ("automake" ,automake)
+       ("libtool" ,libtool)))
     (home-page "https://github.com/s-yata/marisa-trie";)
     (synopsis "Trie data structure C++ library")
     (description "Matching Algorithm with Recursively Implemented



reply via email to

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