[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/03: gnu: utf8proc: Do not use unstable tarball.
From: |
guix-commits |
Subject: |
02/03: gnu: utf8proc: Do not use unstable tarball. |
Date: |
Fri, 21 Jun 2019 11:41:28 -0400 (EDT) |
mbakke pushed a commit to branch staging
in repository guix.
commit 39ff1d8930df2c53beb174cd9ee2b34a5c7b005d
Author: Marius Bakke <address@hidden>
Date: Fri Jun 21 11:57:39 2019 +0200
gnu: utf8proc: Do not use unstable tarball.
* gnu/packages/textutils.scm (utf8proc)[source]: Change to GIT-FETCH.
---
gnu/packages/textutils.scm | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm
index 14220b8..0b3ea49 100644
--- a/gnu/packages/textutils.scm
+++ b/gnu/packages/textutils.scm
@@ -143,13 +143,13 @@ libenca and several charset conversion libraries and
tools.")
(version "2.1.1")
(source
(origin
- (method url-fetch)
- (uri (string-append
- "https://github.com/JuliaStrings/utf8proc/archive/v"
- version ".tar.gz"))
- (file-name (string-append name "-" version ".tar.gz"))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/JuliaStrings/utf8proc")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
- (base32 "1cnpigrazhslw65s4j1a56j7p6d7d61wsxxjf1218i9mkwv2yw17"))))
+ (base32 "1brr8nnpam7y8l9j8fppdpdqvfyfxliw20z41qfip6ygz9pvcsiq"))))
(build-system gnu-build-system)
(inputs ; test data that is otherwise downloaded with curl
`(("NormalizationTest.txt"