diff options
Diffstat (limited to 'gn/packages/web.scm')
-rw-r--r-- | gn/packages/web.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gn/packages/web.scm b/gn/packages/web.scm index 9290a64..734cbe1 100644 --- a/gn/packages/web.scm +++ b/gn/packages/web.scm @@ -76,6 +76,26 @@ 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-5.3.3 + (package + (inherit web-bootstrap) + (name "web-bootstrap-5.3.3") + (version "5.3.3") + (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 "1zzfmvfps13329wyqlf453rvzfxq9zl4jva83jw695bacfdmax9c")))) + (native-inputs (list source)))) + +(define-public web-bootstrap-5.3 web-bootstrap-5.3.3) + +(define-public web-bootstrap-5 web-bootstrap-5.3) + (define-public web-bootstrap-3 (package (inherit web-bootstrap) |