diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2020-06-23 16:13:41 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-06-23 16:13:41 +0300 |
commit | b2447228798bc234ca289daeeb381e77f202039b (patch) | |
tree | d5cea309980a61c4b9327babec5b54b231357737 | |
parent | 405b9ba0482652edb8ae3814149647ed32130c9f (diff) | |
download | guix-b2447228798bc234ca289daeeb381e77f202039b.tar.gz guix-b2447228798bc234ca289daeeb381e77f202039b.zip |
gnu: nototools: Don't use unstable tarball.
* gnu/packages/fontutils.scm (nototools)[source]: Download using
git-fetch.
-rw-r--r-- | gnu/packages/fontutils.scm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm index 4b4d4c72de..3336a84001 100644 --- a/gnu/packages/fontutils.scm +++ b/gnu/packages/fontutils.scm @@ -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)) |