z572 pushed a commit to branch master
in repository guix.
commit 4ea07825117abff6c9c212dd26f5be2e5e722ad2
Author: Zheng Junjie <[email protected]>
AuthorDate: Sat Mar 22 19:19:05 2025 +0800
gnu: marisa: Switch to git-fetch.
* gnu/packages/datastructures.scm (marisa)[source]: Switch to git-fetch.
Change-Id: Iad3dc18c1d31a578ac86bd3298bb1c421c8c7f7e
---
gnu/packages/datastructures.scm | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/datastructures.scm b/gnu/packages/datastructures.scm
index 30a8189a89..e50d8963db 100644
--- a/gnu/packages/datastructures.scm
+++ b/gnu/packages/datastructures.scm
@@ -121,11 +121,13 @@ and heaps.")
(version "0.2.6")
(source
(origin
- (method url-fetch)
- (uri (string-append "https://github.com/s-yata/marisa-trie/files/"
- "4832504/marisa-" version ".tar.gz"))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/s-yata/marisa-trie")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
- (base32 "1pk6wmi28pa8srb4szybrwfn71jldb61c5vgxsiayxcyg1ya4qqh"))))
+ (base32 "1hy8hfksizk1af6kg8z3b9waiz6d5ggd73fiqcvmhfgra36dscyq"))))
(build-system gnu-build-system)
(native-inputs
(list autoconf automake libtool))