diff options
| author | pjotrp | 2026-03-24 17:40:11 +0100 |
|---|---|---|
| committer | pjotrp | 2026-03-24 17:40:11 +0100 |
| commit | e05e2ab239cacb45c791e0635ef883bd80382a6b (patch) | |
| tree | d7357a860cf36706f50deb15602e5f5965622e57 /gn/packages/javascript.scm | |
| parent | b589f2b35e5e14a3888a49a182e930fb5bf93b6d (diff) | |
| download | guix-bioinformatics-e05e2ab239cacb45c791e0635ef883bd80382a6b.tar.gz | |
pylmm-gn2 moved to past
Diffstat (limited to 'gn/packages/javascript.scm')
| -rw-r--r-- | gn/packages/javascript.scm | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/gn/packages/javascript.scm b/gn/packages/javascript.scm index cca4d07..4f0ae9b 100644 --- a/gn/packages/javascript.scm +++ b/gn/packages/javascript.scm @@ -2465,3 +2465,38 @@ browser compatibility, including legacy browsers. "Given an element, such as a button, and a tooltip element describing it, Popper will automatically put the tooltip in the right place near the button.") (license license:expat))) + +(define-public javascript-datatables-2.2.2 + (package + (name "javascript-datatables-2.2.2") + (version "2.2.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/DataTables/Dist-DataTables.git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pzpkpybcf9p81j8afyhrmq11l9lskzxhikdv7h7sb55vx98xn9s")))) + (build-system trivial-build-system) + (arguments + `(#:modules ((guix build utils)) + #:builder + (begin + (use-modules (guix build utils)) + (let* ((out (assoc-ref %outputs "out")) + (targetdir (string-append out "/share/genenetwork2/javascript/DataTables")) + (source (assoc-ref %build-inputs "source"))) + (copy-recursively source targetdir))))) + (propagated-inputs (list javascript-jquery-1)) + (home-page "https://www.datatables.net/") + (synopsis "Tables plug-in for jQuery") + (description "DataTables is a table enhancing plug-in for the jQuery +Javascript library, adding sorting, paging and filtering abilities to plain HTML +tables with minimal effort.") + (license license:expat))) + +(define-public javascript-datatables-2.2 javascript-datatables-2.2.2) + +(define-public javascript-datatables-2 javascript-datatables-2.2) |
