diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2022-09-28 21:55:45 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2022-09-28 22:10:33 +0200 |
commit | 2995865758bb8ed87750e455c4b5e31981603adc (patch) | |
tree | d7246ec2c4908e654daac9542b3489cc529370aa /gnu | |
parent | 1e7696a95b7bd4833364e6c14e0d733f108b4da5 (diff) | |
download | guix-2995865758bb8ed87750e455c4b5e31981603adc.tar.gz guix-2995865758bb8ed87750e455c4b5e31981603adc.zip |
gnu: Add js-scianimator.
* gnu/packages/javascript.scm (js-scianimator): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/javascript.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/javascript.scm b/gnu/packages/javascript.scm index 666a0aa421..f0580eff8b 100644 --- a/gnu/packages/javascript.scm +++ b/gnu/packages/javascript.scm @@ -736,6 +736,29 @@ or for saving sensitive information that shouldn't be sent to an external server.") (license license:expat))) +(define-public js-scianimator + (package + (name "js-scianimator") + (version "1.4") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/brentertz/scianimator.git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0b4r6z85gnsjagdchvf1pvrhylfiaidh701hna8jrm0l4kbb735x")))) + (build-system minify-build-system) + (arguments + '(#:javascript-files + (list "assets/js/jquery.scianimator.js"))) + (home-page "https://github.com/brentertz/scianimator") + (synopsis "Scientific image animator plugin for jQuery") + (description "SciAnimator provides a simple yet powerful interface for +animating a series of images.") + (license license:expat))) + (define-public mujs (package (name "mujs") |