diff options
Diffstat (limited to 'gn/packages/bioinformatics.scm')
-rw-r--r-- | gn/packages/bioinformatics.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gn/packages/bioinformatics.scm b/gn/packages/bioinformatics.scm index 3172880..6c8327e 100644 --- a/gn/packages/bioinformatics.scm +++ b/gn/packages/bioinformatics.scm @@ -47,6 +47,7 @@ #:use-module (gnu packages databases) #:use-module (gnu packages datastructures) #:use-module (gnu packages digest) + #:use-module (gnu packages documentation) #:use-module (gnu packages elf) #:use-module (gnu packages fontutils) #:use-module (gnu packages gcc) @@ -2489,8 +2490,7 @@ in-memory footprint at the cost of packing and unpacking.") ((".*test-docs.*") ""))))) (add-after 'build 'build-manpages (lambda* (#:key inputs #:allow-other-keys) - (when (assoc-ref inputs "asciidoctor") - (invoke "make" "man")))) + (invoke "make" "man"))) (replace 'install (lambda* (#:key outputs #:allow-other-keys) (let ((out (assoc-ref outputs "out"))) @@ -2505,7 +2505,8 @@ in-memory footprint at the cost of packing and unpacking.") (if (supported-package? ruby-asciidoctor) (list ruby-asciidoctor) '()) - (list bash-tap + (list asciidoc + bash-tap bc cmake-minimal jq |