diff options
author | Munyoki Kilyungi | 2024-02-15 16:59:16 +0300 |
---|---|---|
committer | Munyoki Kilyungi | 2024-02-15 17:20:06 +0300 |
commit | b8348147e422a6499d2fd5992a349e4a29780ed0 (patch) | |
tree | d79d9ce26718a6b59ae71922a6e149b04a84bebd | |
parent | e947a1e5c330595eee3a27185e042cf3b73689da (diff) | |
download | guix-bioinformatics-b8348147e422a6499d2fd5992a349e4a29780ed0.tar.gz |
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 <me@bonfacemunyoki.com>
-rw-r--r-- | gn/packages/javascript.scm | 10 |
1 files changed, 4 insertions, 6 deletions
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") |