aboutsummaryrefslogtreecommitdiff
path: root/gn/packages/javascript.scm
diff options
context:
space:
mode:
authorEfraim Flashner2019-09-26 10:15:32 -0500
committerEfraim Flashner2019-09-26 10:15:32 -0500
commitdae506df675a046465ea4ab340c0e8acdd798857 (patch)
tree57459d2393a9b6fcac9b9091c274b63f9ed0db04 /gn/packages/javascript.scm
parent2742663870188f7edbad56d42955c3ade86e1ad9 (diff)
downloadguix-bioinformatics-dae506df675a046465ea4ab340c0e8acdd798857.tar.gz
gn: Add javascript-ckeditor.
* gn/packages/javascript.scm (javascript-ckeditor): New variable.
Diffstat (limited to 'gn/packages/javascript.scm')
-rw-r--r--gn/packages/javascript.scm42
1 files changed, 42 insertions, 0 deletions
diff --git a/gn/packages/javascript.scm b/gn/packages/javascript.scm
index fe6c02c..a6ee543 100644
--- a/gn/packages/javascript.scm
+++ b/gn/packages/javascript.scm
@@ -842,3 +842,45 @@ a sample function, allowing for more complex calculations.")
(name "js-jstat")
(arguments `(#:javascript-files '("dist/jstat.js")))
(build-system minify-build-system)))
+
+(define-public javascript-ckeditor ; version 4
+ (package
+ (name "javascript-ckeditor")
+ (version "4.13.0") ; Sept. 26, 2019
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://cdn.ckeditor.com/" version
+ "/standard/ckeditor.js"))
+ (file-name (string-append "ckeditor-" version ".js"))
+ (sha256
+ (base32
+ "0cvf1qdva5h2dh8y10c9v7dxrd82siswxx7h6cq0mf46ssjdygd0"))))
+ (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/ckeditor"))
+ (source (assoc-ref %build-inputs "source")))
+ (mkdir-p targetdir)
+ (copy-file source (string-append targetdir "/ckeditor.js"))))))
+ (native-inputs `(("source" ,source)))
+ (home-page "https://ckeditor.com/")
+ (synopsis "Smart WYSIWYG HTML editor")
+ (description
+ "CKEditor is a proven, enterprise-grade WYSIWYG HTML editor with wide
+browser compatibility, including legacy browsers.
+@enumerate
+@item Paste from Word and Excel, spell check, accessibility checker, tables.
+@item Autocomplete, mentions, widgets, code snippets, emoji plugins.
+@item Full control over content: HTML filtering, view source mode.
+@item Great accessibility: WCAG 2.0 AA and Section 508 compliant.
+@item Long-term support (LTS) until 2023.
+@end enumerate")
+ (license (list license:gpl2+
+ license:lgpl2.1+
+ license:mpl1.1)))) ; Any of these three