diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-12-04 19:40:05 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-12-04 19:54:28 +0100 |
commit | eec1bdcd9e49962979a0f6abce65bd87d550b395 (patch) | |
tree | 91b31f70f7aaa83d5f7d9df05da0c147ea6cd149 /gnu/packages | |
parent | 2c1c75a56cffbb1a9ba4c1fc6266fc4bff47ea22 (diff) | |
download | guix-eec1bdcd9e49962979a0f6abce65bd87d550b395.tar.gz |
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.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 23 |
1 files changed, 11 insertions, 12 deletions
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) |