diff options
author | Zheng Junjie <z572@z572.online> | 2025-03-22 19:19:05 +0800 |
---|---|---|
committer | Zheng Junjie <z572@z572.online> | 2025-03-22 21:36:21 +0800 |
commit | 4ea07825117abff6c9c212dd26f5be2e5e722ad2 (patch) | |
tree | 9851f6ee8279b0de3c85f8047e0f73be50cc4ded | |
parent | 2bd83fad277c356061aff2a58b279f9f35d6cd8c (diff) |
gnu: marisa: Switch to git-fetch.
* gnu/packages/datastructures.scm (marisa)[source]: Switch to git-fetch.
Change-Id: Iad3dc18c1d31a578ac86bd3298bb1c421c8c7f7e
-rw-r--r-- | gnu/packages/datastructures.scm | 10 |
1 files 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)) |