aboutsummaryrefslogtreecommitdiff
path: root/gn/packages/javascript.scm
diff options
context:
space:
mode:
authorEfraim Flashner2020-03-15 04:33:59 -0500
committerEfraim Flashner2020-03-15 04:33:59 -0500
commitec9a0ae00428f944717ff5e4d97da52a500647ce (patch)
tree92d0176ea39b88f1e87578f2431abc725c9e8e3c /gn/packages/javascript.scm
parentda457bd06f88fddcd7bfa510e7aac6358ffd028d (diff)
downloadguix-bioinformatics-ec9a0ae00428f944717ff5e4d97da52a500647ce.tar.gz
WIP: update ratspub to 0.2-1.1b516eewip-ratspub
As a package it is ready, but it tries to write to files in it's directory, which is in the store, meaning the service will need to be rewritten.
Diffstat (limited to 'gn/packages/javascript.scm')
-rw-r--r--gn/packages/javascript.scm24
1 files changed, 24 insertions, 0 deletions
diff --git a/gn/packages/javascript.scm b/gn/packages/javascript.scm
index 79a8060..e6d1d7e 100644
--- a/gn/packages/javascript.scm
+++ b/gn/packages/javascript.scm
@@ -1121,3 +1121,27 @@ widgets, and themes built on top of the jQuery JavaScript Library.")
(name "js-jquery-ui")
(arguments `(#:javascript-files '("ui/jquery-ui.js")))
(build-system minify-build-system)))
+
+(define-public js-poppler
+ (package
+ (name "js-poppler")
+ (version "2.0.6")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/popperjs/popper-core")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0lzy981p9nja2l3xa2zvals6q31v3bzpxxa85yn9pm7wkj3vglf2"))))
+ (build-system minify-build-system)
+ (arguments
+ `(#:javascript-files '("src/poppler.js")))
+ (home-page "https://popper.js.org/")
+ (synopsis "Tooltip and popover positioning engine")
+ (description
+ "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)))