diff options
author | Efraim Flashner | 2020-03-15 04:33:59 -0500 |
---|---|---|
committer | Efraim Flashner | 2020-03-31 09:53:06 -0500 |
commit | 14dc7e6f85f204d01fc5a96e986469c0355e87fb (patch) | |
tree | 5c9f3a942cd7501d49157bacd49128b7dd34f11c /gn/packages/javascript.scm | |
parent | b5177650f425afb5fdc9147904d7cb0e7437e0cb (diff) | |
download | guix-bioinformatics-14dc7e6f85f204d01fc5a96e986469c0355e87fb.tar.gz |
gn: ratspub: Update to 0.2.2.
Diffstat (limited to 'gn/packages/javascript.scm')
-rw-r--r-- | gn/packages/javascript.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gn/packages/javascript.scm b/gn/packages/javascript.scm index 79a8060..95d4154 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-popper + (package + (name "js-popper") + (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/popper.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))) |