From eec1bdcd9e49962979a0f6abce65bd87d550b395 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Sat, 4 Dec 2021 19:40:05 +0100 Subject: gnu: seqan-1: Use gexp for builder. * gnu/packages/bioinformatics.scm (seqan-1)[arguments]: Use a gexp to remove references to %build-inputs and %outputs. --- gnu/packages/bioinformatics.scm | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 1a524e0ecf..cc1e9f658e 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -7128,18 +7128,17 @@ bioinformatics file formats, sequence alignment, and more.") (arguments `(#:modules ((guix build utils)) #:builder - (begin - (use-modules (guix build utils)) - (let ((tar (assoc-ref %build-inputs "tar")) - (bzip (assoc-ref %build-inputs "bzip2")) - (out (assoc-ref %outputs "out")) - (doc (assoc-ref %outputs "doc"))) - (setenv "PATH" (string-append tar "/bin:" bzip "/bin")) - (invoke "tar" "xvf" (assoc-ref %build-inputs "source")) - (chdir (string-append "seqan-library-" ,version)) - (copy-recursively "include" (string-append out "/include")) - (copy-recursively "share" (string-append doc "/share")) - #t)))) + ,#~(begin + (use-modules (guix build utils)) + (let ((tar #$(this-package-native-input "tar")) + (bzip #$(this-package-native-input "bzip2")) + (out #$output) + (doc #$output:doc)) + (setenv "PATH" (string-append tar "/bin:" bzip "/bin")) + (invoke "tar" "xvf" #$(this-package-native-input "source")) + (chdir (string-append "seqan-library-" #$version)) + (copy-recursively "include" (string-append out "/include")) + (copy-recursively "share" (string-append doc "/share")))))) (native-inputs `(("source" ,source) ("tar" ,tar) -- cgit v1.2.3