diff options
author | Efraim Flashner | 2019-07-19 08:36:51 -0500 |
---|---|---|
committer | Efraim Flashner | 2019-07-21 02:45:37 -0500 |
commit | 066b1e94fd9227f63baf38bd6aa3db6371cf7e37 (patch) | |
tree | 9a11b5d37399f9154c935f6769f2c5a5dc3c5c2a | |
parent | aa118d1fdce888241f9d5e6414bc08bcf21b87f4 (diff) | |
download | guix-bioinformatics-066b1e94fd9227f63baf38bd6aa3db6371cf7e37.tar.gz |
gn: Add javascript-cytoscape-2.
* gn/packages/javascript.scm (javascript-cytoscape-2): New variable.
-rw-r--r-- | gn/packages/javascript.scm | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gn/packages/javascript.scm b/gn/packages/javascript.scm index 5399087..05644af 100644 --- a/gn/packages/javascript.scm +++ b/gn/packages/javascript.scm @@ -85,6 +85,22 @@ for programmers and scientists to use graph theory in their apps, whether it's for server-side analysis in a Node.js app or for a rich user interface.") (license license:expat))) +(define-public javascript-cytoscape-2 + (package + (inherit javascript-cytoscape) + (name "javascript-cytoscape") + (version "2.7.29") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cytoscape/cytoscape.js") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "00y0h6kdkw2x6lyf9c16fxmg8iagfl77dz8nqb337v3ljifkb4z8")))))) + (define-public javascript-cytoscape-panzoom (package ;; (inherit javascript-cytoscape) |