1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-06-12 21:34:06 +02:00

gnu: nototools: Don't use unstable tarball.

* gnu/packages/fontutils.scm (nototools)[source]: Download using
git-fetch.
This commit is contained in:
Efraim Flashner
2020-06-23 16:13:41 +03:00
parent 405b9ba048
commit b244722879
+6 -6
View File
@@ -746,14 +746,14 @@ implements UFO3 as described by the UFO font format.")
(version "20170925")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/googlei18n/nototools/"
"archive/v2017-09-25-tooling-for-phase3-"
"update.tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/googlei18n/nototools")
(commit "v2017-09-25-tooling-for-phase3-update")))
(file-name (git-file-name name version))
(sha256
(base32
"1pvacw18cm9l4sb66pqyjc7hc74xhhfxc7kd5ald8lixf4wzg0s8"))))
"03nzvcvwmrhfrcjhg218q2f3hfrm3vlivp4rk19sc397kh3hisiz"))))
(build-system python-build-system)
(arguments
`(#:python ,python-2))