diff options
author | Efraim Flashner | 2021-03-04 15:26:13 +0200 |
---|---|---|
committer | Efraim Flashner | 2021-03-04 15:26:13 +0200 |
commit | 8e477dbd886e7d3c875f1a6ff6dfb237436c66e4 (patch) | |
tree | bd5768e14f448e118d70dc159af2f22526b1594c /gn/packages | |
parent | 4807cc2430e6895f83b56e625557a3015d990733 (diff) | |
download | guix-bioinformatics-8e477dbd886e7d3c875f1a6ff6dfb237436c66e4.tar.gz |
gn: add missing javascript change with BNW update
Diffstat (limited to 'gn/packages')
-rw-r--r-- | gn/packages/javascript.scm | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/gn/packages/javascript.scm b/gn/packages/javascript.scm index ce86cdc..e167e72 100644 --- a/gn/packages/javascript.scm +++ b/gn/packages/javascript.scm @@ -198,17 +198,9 @@ directed graphs on the client-side.") (file-name (git-file-name name version)) (sha256 (base32 "0z0sh5q5cd0iirdyhlln83vmsvwn1sbh4zdmdh8k5hld075g4q64")))) - (build-system trivial-build-system) + (build-system minify-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/cytoscape-dagre")) - (source (assoc-ref %build-inputs "source"))) - (install-file (string-append source "/cytoscape-dagre.js") targetdir))))) - (native-inputs `(("source" ,source))) + `(#:javascript-files '("cytoscape-dagre.js"))) (propagated-inputs `(("javascript-cytoscape" ,javascript-cytoscape) ("javascript-dagre" ,javascript-dagre))) |