diff options
author | Frederick Muriuki Muriithi | 2025-03-11 16:29:01 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2025-03-11 16:30:25 -0500 |
commit | 79b4d03c10ceda4450a86c2eca3dbbbbd43f4b7a (patch) | |
tree | a33621edc63a7e569bb78507ba3e7883d69ccf1a /gn/packages/javascript.scm | |
parent | 065e0dc03016e7bfc5733e63be664990a36646e8 (diff) | |
download | guix-bioinformatics-79b4d03c10ceda4450a86c2eca3dbbbbd43f4b7a.tar.gz |
javascript-datatables-scroller-style: New variant javascript-datatables-scroller-style-2.4.3
Diffstat (limited to 'gn/packages/javascript.scm')
-rw-r--r-- | gn/packages/javascript.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gn/packages/javascript.scm b/gn/packages/javascript.scm index b246a94..6d33da0 100644 --- a/gn/packages/javascript.scm +++ b/gn/packages/javascript.scm @@ -455,6 +455,32 @@ tables with minimal effort.") (description "Scroller is a virtual rendering plug-in for DataTables which allows large datasets to be drawn on screen very quickly. Virtual rendering means is that only the visible portion of the table is drawn, while the scrolling container gives the visual impression that the whole table is visible, allowing excellent browser performance.") (license license:expat))) + +(define-public javascript-datatables-scroller-style-2.4.3 + (package + (inherit javascript-datatables-scroller-style) + (name "javascript-datatables-scroller-style-2.4.3") + (version "2.4.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/DataTables/Dist-DataTables-Scroller-DataTables.git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1b7m8xwbr05hglfy00kzv1vmqvvp9y8n1kyb3ka95gf7sllihhf9")))) + (propagated-inputs + (modify-inputs + (package-propagated-inputs javascript-datatables-scroller-style) + (delete "javascript-datatables"))))) + +(define-public javascript-datatables-scroller-style-2.4 + javascript-datatables-scroller-style-2.4.3) + +(define-public javascript-datatables-scroller-style-2 + javascript-datatables-scroller-style-2.4) + (define-public javascript-datatables-scroller (package (name "javascript-datatables-scroller") |