diff options
author | Leo Famulari <leo@famulari.name> | 2020-12-17 22:15:38 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2020-12-17 22:16:41 -0500 |
commit | ec4a9cadcb2b44f86917c3ebb17c903149e42883 (patch) | |
tree | 969a35a08397822846bd4d5a3a6bd1416c157d26 /gnu | |
parent | fed30fd28129c4b5894f666053abbd1bb51758b5 (diff) | |
download | guix-ec4a9cadcb2b44f86917c3ebb17c903149e42883.tar.gz |
Revert "gnu: font-google-roboto: Update to 2.138."
This commit caused the package definition to no longer install any files. This reverts commit e93ee2547ecec152f9a198ccc338c4329cc69a71.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/fonts.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index 717656d682..d5806cda36 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -791,15 +791,16 @@ display all Unicode symbols.") (define-public font-google-roboto (package (name "font-google-roboto") - (version "2.138") + (version "2.136") (source (origin (method url-fetch) (uri (string-append "https://github.com/google/roboto/releases/download/" - "v" version "/roboto-unhinted.zip")) + "v" version "/roboto-hinted.zip")) (file-name (string-append name "-" version ".zip")) (sha256 - (base32 "0a57f957qy49kildqx2lp2paqk9i8kkayakmrzxh39hhhmqlrxkh")))) + (base32 + "0spscx08fad7i8qs7icns96iwcapniq8lwwqqvbf7bamvs8qfln4")))) (build-system font-build-system) (home-page "https://github.com/google/roboto") (synopsis "The Roboto family of fonts") |