From 9bbac1da0cd30eac1c42ff42d0b8460852e03510 Mon Sep 17 00:00:00 2001 From: Maxime Devos Date: Mon, 29 Mar 2021 17:46:36 +0200 Subject: [PATCH 08/10] gnu: bandage: Do not yet use the 'imagemagick/stable' variant. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Once (‘Closure of bandage is way too large’) has been fixed, the variant will probably be usable. * gnu/packages/bioinformatics.scm (bandage): [arguments]<#:disallowed-references>: Once the issue has been fixed, prevent the imagemagick/stable package from ending up in the closure. [native-inputs]: Note that 'imagemagick/stable' cannot be used yet. --- gnu/packages/bioinformatics.scm | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index a81c873371..290946455a 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -12548,7 +12548,13 @@ Thus the per-base error rate is similar to the raw input reads.") (base32 "1bbsn5f5x8wlspg4pbibqz6m5vin8c19nl224f3z3km0pkc97rwv")))) (build-system qt-build-system) (arguments - `(#:phases + ;; TODO: Once is fixed, + ;; consider uncommenting the following: + ;; + ;; Prevent the (rarely updated) imagemagick/stable package + ;; from ending up in the closure. + `(;;#:disallowed-references (,imagemagick/stable) + #:phases (modify-phases %standard-phases (replace 'configure (lambda _ @@ -12572,6 +12578,8 @@ Thus the per-base error rate is similar to the raw input reads.") `(("qtbase" ,qtbase) ("qtsvg" ,qtsvg))) (native-inputs + ;; imagemagick/stable cannot be used here, as it will end up in the + ;; closure. See . `(("imagemagick" ,imagemagick))) (home-page "https://rrwick.github.io/Bandage/") (synopsis -- 2.31.1