From b8348147e422a6499d2fd5992a349e4a29780ed0 Mon Sep 17 00:00:00 2001 From: Munyoki Kilyungi Date: Thu, 15 Feb 2024 16:59:16 +0300 Subject: Bump down font-awesome to v4.7.0. * gn/packages/javascript.scm (javascript-font-awesome): Update to v4.7.0 which is the exact version we use in the genenetwork website. Signed-off-by: Munyoki Kilyungi --- gn/packages/javascript.scm | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'gn/packages/javascript.scm') diff --git a/gn/packages/javascript.scm b/gn/packages/javascript.scm index e24990b..349fa66 100644 --- a/gn/packages/javascript.scm +++ b/gn/packages/javascript.scm @@ -1854,7 +1854,7 @@ Popper will automatically put the tooltip in the right place near the button.") (define-public javascript-font-awesome (package (name "javascript-font-awesome") - (version "5.15.2") + (version "v4.7.0") (source (origin (method git-fetch) @@ -1863,7 +1863,7 @@ Popper will automatically put the tooltip in the right place near the button.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "1jin0qlf5lv4l9gj8qc1pp34mxyvyj6gma4qnjqiah1bzcfn635l")))) + (base32 "0w30y26jp8nvxa3iiw7ayl6rkza1rz62msl9xw3srvxya1c77grc")))) (build-system trivial-build-system) (arguments `(#:modules ((guix build utils)) @@ -1873,13 +1873,11 @@ Popper will automatically put the tooltip in the right place near the button.") (let* ((out (assoc-ref %outputs "out")) (targetdir (string-append out "/share/genenetwork2/javascript/fontawesome")) (source (assoc-ref %build-inputs "source")) - (js-dir (string-append source "/js")) (css-dir (string-append source "/css")) - (fonts-dir (string-append source "/webfonts"))) + (fonts-dir (string-append source "/fonts"))) (copy-recursively css-dir (string-append targetdir "/css")) - (copy-recursively js-dir (string-append targetdir "/js")) (copy-recursively fonts-dir - (string-append targetdir "/webfonts")))))) + (string-append targetdir "/fonts")))))) (native-inputs `(("source" ,source))) (home-page "https://fontawesome.com/") (synopsis "Font that contains a rich iconset") -- cgit v1.2.3