diff options
author | Efraim Flashner | 2019-09-08 07:12:07 -0500 |
---|---|---|
committer | Efraim Flashner | 2019-09-08 07:12:07 -0500 |
commit | 23e966548a3a33c14d48a59afb3b81c6ea7d327f (patch) | |
tree | d9d363631c2ba81c9251c3cae9356f16ddc0b4fb /gn | |
parent | 63f1398e03e648a8f0244c30685844aaa1dce639 (diff) | |
download | guix-bioinformatics-23e966548a3a33c14d48a59afb3b81c6ea7d327f.tar.gz |
gn: Add web-bootstrap-3.
* gn/packages/web.scm (web-bootstrap-3): New variable.
Diffstat (limited to 'gn')
-rw-r--r-- | gn/packages/web.scm | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/gn/packages/web.scm b/gn/packages/web.scm index 8b041b4..c38ea65 100644 --- a/gn/packages/web.scm +++ b/gn/packages/web.scm @@ -82,6 +82,21 @@ entire app with our Sass variables and mixins, responsive grid system, extensive prebuilt components, and powerful plugins built on jQuery.") (license license:expat))) +(define-public web-bootstrap-3 + (package + (inherit web-bootstrap) + (name "web-bootstrap") + (version "3.4.1") ; Feb. 13, 2019 + (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 "1wsv79rvzaacyf740mwmhxadpwf28pad711jhbxl26zgqjrpzcbp")))))) + (define-public web-bootstrap-native (let ((commit "2e48d7ee29d4063e3bd2024ff83ddc50a550c4dd")) (package |