diff options
author | Arun Isaac | 2021-07-03 15:25:07 +0530 |
---|---|---|
committer | Arun Isaac | 2021-07-03 15:25:07 +0530 |
commit | 7bd34ba252d3a215d5f52711f14063aa5a4664a4 (patch) | |
tree | ba9e2f114cd9cb2f7e14e58566e583c4b295a8a6 | |
parent | 06ed0a658fd94ec2d292c73a420ba714c79b1dfc (diff) | |
download | ccwl-7bd34ba252d3a215d5f52711f14063aa5a4664a4.tar.gz ccwl-7bd34ba252d3a215d5f52711f14063aa5a4664a4.tar.lz ccwl-7bd34ba252d3a215d5f52711f14063aa5a4664a4.zip |
guix.scm: Depend on cwltool and graphviz.
* guix.scm: Import (gnu packages bioinformatics) and (gnu packages
graphviz).
(ccwl)[native-inputs]: Add cwltool and graphviz.
-rw-r--r-- | guix.scm | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -33,6 +33,8 @@ (ice-9 popen) (ice-9 rdelim) (gnu packages autotools) + (gnu packages bioinformatics) + (gnu packages graphviz) (gnu packages guile) (gnu packages pkg-config) (gnu packages skribilo) @@ -77,6 +79,9 @@ `(("autoconf" ,autoconf) ("automake" ,automake) ("pkg-config" ,pkg-config) + ;; To build documentation + ("cwltool" ,cwltool) + ("graphviz" ,graphviz) ("skribilo" ,skribilo))) (home-page "https://git.systemreboot.net/ccwl") (synopsis "Concise common workflow language") |