[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
09/11: gnu: plink: Remove reference to %build-inputs.
From: |
guix-commits |
Subject: |
09/11: gnu: plink: Remove reference to %build-inputs. |
Date: |
Sat, 4 Dec 2021 10:02:36 -0500 (EST) |
rekado pushed a commit to branch core-updates-frozen
in repository guix.
commit 88bb81b51511ed3567c5dd570c95115067fcc16b
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Sat Dec 4 15:31:31 2021 +0100
gnu: plink: Remove reference to %build-inputs.
* gnu/packages/bioinformatics.scm (plink)[arguments]: Use a gexp to replace
reference to %build-inputs.
---
gnu/packages/bioinformatics.scm | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 5617f5e..f69df5d 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -6721,14 +6721,14 @@ accessed/downloaded on demand across HTTP.")
"plink-endian-detection.patch"))))
(build-system gnu-build-system)
(arguments
- '(#:tests? #f ;no "check" target
- #:make-flags (list (string-append "LIB_LAPACK="
- (assoc-ref %build-inputs "lapack")
- "/lib/liblapack.so")
- "WITH_LAPACK=1"
- "FORCE_DYNAMIC=1"
- ;; disable phoning home
- "WITH_WEBCHECK=")
+ `(#:tests? #f ;no "check" target
+ #:make-flags ,#~(list (string-append "LIB_LAPACK="
+ #$(this-package-input "lapack")
+ "/lib/liblapack.so")
+ "WITH_LAPACK=1"
+ "FORCE_DYNAMIC=1"
+ ;; disable phoning home
+ "WITH_WEBCHECK=")
#:phases
(modify-phases %standard-phases
;; no "configure" script
- branch core-updates-frozen updated (114eb98 -> cc491ea), guix-commits, 2021/12/04
- 08/11: gnu: plink: Remove trailing #T., guix-commits, 2021/12/04
- 09/11: gnu: plink: Remove reference to %build-inputs.,
guix-commits <=
- 03/11: gnu: prodigal: Remove reference to %outputs., guix-commits, 2021/12/04
- 01/11: gnu: prank: Remove trailing #T., guix-commits, 2021/12/04
- 07/11: gnu: rsem: Update to 1.3.3., guix-commits, 2021/12/04
- 06/11: gnu: rsem: Remove trailing #T., guix-commits, 2021/12/04
- 10/11: gnu: plink-ng: Replace reference to %outputs., guix-commits, 2021/12/04
- 02/11: gnu: prank: Bind INPUTS in 'install phase., guix-commits, 2021/12/04
- 04/11: gnu: rsem: Remove trailing #T from snippet., guix-commits, 2021/12/04
- 05/11: gnu: rsem: Remove references to %build-inputs., guix-commits, 2021/12/04
- 11/11: gnu: plink-ng: Enable tests., guix-commits, 2021/12/04