aboutsummaryrefslogtreecommitdiff
path: root/gn/packages/web.scm
diff options
context:
space:
mode:
authorEfraim Flashner2019-07-22 06:38:07 -0500
committerEfraim Flashner2019-07-22 06:38:07 -0500
commit2f4d1b03d127db677a1c8b57461c1d8ed6ae6266 (patch)
treec630f844987a30331dc5fbcc44b29d614af2690d /gn/packages/web.scm
parent32cb745eec1b249a56894f57686db28eb0a77e9b (diff)
downloadguix-bioinformatics-2f4d1b03d127db677a1c8b57461c1d8ed6ae6266.tar.gz
gn: Add font-awesome.
* gn/packages/web.scm (font-awesome): New variable.
Diffstat (limited to 'gn/packages/web.scm')
-rw-r--r--gn/packages/web.scm40
1 files changed, 40 insertions, 0 deletions
diff --git a/gn/packages/web.scm b/gn/packages/web.scm
index da4de1f..8b041b4 100644
--- a/gn/packages/web.scm
+++ b/gn/packages/web.scm
@@ -1,9 +1,11 @@
(define-module (gn packages web)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (gnu packages)
+ #:use-module (gnu packages compression)
#:use-module (gnu packages python)
#:use-module (gnu packages web)
#:use-module (guix packages)
+ #:use-module (guix download)
#:use-module (guix git-download)
#:use-module (guix utils)
#:use-module (guix build-system gnu)
@@ -161,3 +163,41 @@ applications in Python that will run many times faster than traditional CGI and
will have access to advanced features such as ability to retain database
connections and other data between hits and access to Apache internals.")
(license license:asl2.0))))
+
+(define-public web-font-awesome
+ (package
+ (name "web-font-awesome")
+ (version "4.7.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://fontawesome.com/v" version
+ "/assets/font-awesome-" version ".zip"))
+ (sha256
+ (base32 "0jgn26cr5xhqyxfwqmki0564cid4i4l38cwsddcslr3qkzpmhx2j"))))
+ (build-system trivial-build-system)
+ (arguments
+ `(#:modules ((guix build utils))
+ #:builder
+ (begin
+ (use-modules (guix build utils))
+ (let* ((out (assoc-ref %outputs "out"))
+ (name "font-awesome")
+ (unzip (string-append (assoc-ref %build-inputs "unzip")
+ "/bin/unzip"))
+ (targetdir (string-append out "/share/web/" name))
+ (source (assoc-ref %build-inputs "source")))
+ (invoke unzip source)
+ (copy-recursively (string-append "font-awesome-" ,version)
+ targetdir)))))
+ (native-inputs
+ `(("source" ,source)
+ ("unzip" ,unzip)))
+ (home-page "https://fontawesome.com/")
+ (synopsis "iconic font designed for use with Twitter Bootstrap")
+ (description "This font contains about 249 various icon glyphs. Glyphs are
+designed as scalable vector graphics hence display very well at any screen size.
+This font was basically designed to be used with the Twitter bootstrap library
+but can be used in other places also.")
+ (license (list license:cc-by4.0
+ license:silofl1.1))))