diff options
author | Efraim Flashner | 2019-09-22 04:16:47 -0500 |
---|---|---|
committer | Efraim Flashner | 2019-09-22 04:38:21 -0500 |
commit | c41be5cc951781de0052ae3d74729734c24e77bd (patch) | |
tree | 0f0aef0d1a53282e4380410bda3ae9b4ba4a1ff6 /gn/packages/web.scm | |
parent | 905ad10e8f1c93dcf3c7a7d5ab073e42641083b3 (diff) | |
download | guix-bioinformatics-c41be5cc951781de0052ae3d74729734c24e77bd.tar.gz |
gn: Add web-bootstrap-3.3.
* gn/packages/web.scm (web-bootstrap-3.3): New variable.
Diffstat (limited to 'gn/packages/web.scm')
-rw-r--r-- | gn/packages/web.scm | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gn/packages/web.scm b/gn/packages/web.scm index c38ea65..8c11d50 100644 --- a/gn/packages/web.scm +++ b/gn/packages/web.scm @@ -97,6 +97,22 @@ extensive prebuilt components, and powerful plugins built on jQuery.") (sha256 (base32 "1wsv79rvzaacyf740mwmhxadpwf28pad711jhbxl26zgqjrpzcbp")))))) +(define-public web-bootstrap-3.3 + (package + (inherit web-bootstrap) + (name "web-bootstrap") + (version "3.3.7") ; July 25, 2016 + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/twbs/bootstrap.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0li7vdr4avz34b9xvwk7skbvnvzbx002cw5nfm7iwvi1wk8v5bri")))) + (native-inputs `(("source" ,source))))) + (define-public web-bootstrap-native (let ((commit "2e48d7ee29d4063e3bd2024ff83ddc50a550c4dd")) (package |