about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2025-03-12 14:11:01 -0500
committerFrederick Muriuki Muriithi2025-03-12 14:11:01 -0500
commit83c776a3e4fdb389f0e75f668aaad5045d415e94 (patch)
tree09f38b2e8f9fdbe010fe3f99d7d8ff836a001caf
parent9a0f71e5e6137129fa45d8d1c3486dabca9d8af7 (diff)
downloadguix-bioinformatics-83c776a3e4fdb389f0e75f668aaad5045d415e94.tar.gz
web-bootstrap: New variant, version 5.3.3
-rw-r--r--gn/packages/web.scm20
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)