From 72635f3ca0130ec72414da8c2bcae74bb11f0ed2 Mon Sep 17 00:00:00 2001 From: ng0 Date: Sun, 28 May 2017 19:33:11 +0000 Subject: [PATCH 2/4] gnu: font-awesome: Use github source. * gnu/packages/fonts.scm (font-awesome)[source]: Switch to the source on github as the previous zip file is updated in place, resulting in a changed hash sum. --- gnu/packages/fonts.scm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index 21326ce1b..3806e5054 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -1069,11 +1069,12 @@ designed to work well in user interface environments.") (version "4.7.0") (source (origin (method url-fetch) - (uri (string-append "http://fontawesome.io/assets/" - name "-" version ".zip")) + (uri (string-append "https://github.com/FortAwesome/Font-Awesome/" + "archive/v" version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "1m1rfwm4sjkv10j3xd2dhwk286a5912b2zgvc692cmxi5gxs68jf")))) + "0hsxn06kycz9brizpzvnv1qqkwdkfkg2qdyfpwmkibfyw6h2nlfy")))) (build-system font-build-system) (home-page "http://fontawesome.io") (synopsis "Font that contains a rich iconset") -- 2.13.0