diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-10-20 01:08:34 -0400 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:42:30 +0200 |
commit | 0e219544f1de767f39c329fd37e9de5ab7fe46ab (patch) | |
tree | 55783d3ee3b7ecc3a9a6a291584bcd3207df09d7 | |
parent | cf04172b3f1b651bf852b35ec560d18bbef78b30 (diff) | |
download | guix-0e219544f1de767f39c329fd37e9de5ab7fe46ab.tar.gz guix-0e219544f1de767f39c329fd37e9de5ab7fe46ab.zip |
gnu: ngless: Add bash-minimal to inputs.
* gnu/packages/bioinformatics.scm (ngless)
[inputs]: Add bash-minimal.
Change-Id: I3560d4f10261f87c819bd12cf0956a6cf77324cb
-rw-r--r-- | gnu/packages/bioinformatics.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 126c0334e3..3a634486ce 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -19174,7 +19174,8 @@ datasets.") (add-after 'register 'remove-libraries (lambda* (#:key outputs #:allow-other-keys) (delete-file-recursively (string-append (assoc-ref outputs "out") "/lib"))))))) - (inputs (list prodigal + (inputs (list bash-minimal + prodigal bwa samtools minimap2 |