rekado pushed a commit to branch core-updates-frozen
in repository guix.

commit 502538c6e40897216397cd69cb5f3bace17ecddb
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Sat Dec 4 19:42:12 2021 +0100

    gnu: emboss: Remove reference to %build-inputs.
    
    * gnu/packages/bioinformatics.scm (emboss)[arguments]: Use gexp to remove
    reference to %build-inputs.
---
 gnu/packages/bioinformatics.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 4fef438..9aa0e95 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -8666,8 +8666,8 @@ factors bound at the specific regions.")
     (build-system gnu-build-system)
     (arguments
      `(#:configure-flags
-       (list (string-append "--with-hpdf="
-                            (assoc-ref %build-inputs "libharu")))
+       ,#~(list (string-append "--with-hpdf="
+                               #$(this-package-input "libharu")))
        #:phases
        (modify-phases %standard-phases
          (add-after 'unpack 'fix-checks

Reply via email to