[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/06: gnu: hop: Use 'modify-phases' syntax.
From: |
Efraim Flashner |
Subject: |
02/06: gnu: hop: Use 'modify-phases' syntax. |
Date: |
Sun, 23 Oct 2016 11:38:07 +0000 (UTC) |
efraim pushed a commit to branch master
in repository guix.
commit 04014de6f555e21cccb056650f334be316390b5c
Author: Efraim Flashner <address@hidden>
Date: Sun Oct 23 10:21:58 2016 +0300
gnu: hop: Use 'modify-phases' syntax.
* gnu/packages/scheme.scm (hop)[arguments]: Use 'modify-phases' syntax.
---
gnu/packages/scheme.scm | 25 ++++++++++++-------------
1 file changed, 12 insertions(+), 13 deletions(-)
diff --git a/gnu/packages/scheme.scm b/gnu/packages/scheme.scm
index c8e747d..30981b7 100644
--- a/gnu/packages/scheme.scm
+++ b/gnu/packages/scheme.scm
@@ -295,19 +295,18 @@ Scheme and C programs and between Scheme and Java
programs.")
(build-system gnu-build-system)
(arguments
`(#:phases
- (alist-replace
- 'configure
- (lambda* (#:key outputs #:allow-other-keys)
- (let ((out (assoc-ref outputs "out")))
- (zero?
- (system* "./configure"
- (string-append "--prefix=" out)
- (string-append "--blflags="
- ;; user flags completely override useful
- ;; default flags, so repeat them here.
- "-copt \\$(CPICFLAGS) -L\\$(BUILDLIBDIR) "
- "-ldopt -Wl,-rpath," out "/lib")))))
- %standard-phases)
+ (modify-phases %standard-phases
+ (replace 'configure
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let ((out (assoc-ref outputs "out")))
+ (zero?
+ (system* "./configure"
+ (string-append "--prefix=" out)
+ (string-append "--blflags="
+ ;; user flags completely override
useful
+ ;; default flags, so repeat them here.
+ "-copt \\$(CPICFLAGS)
-L\\$(BUILDLIBDIR) "
+ "-ldopt -Wl,-rpath," out "/lib")))))))
#:tests? #f)) ; no test suite
(inputs `(("avahi" ,avahi)
("bigloo" ,bigloo)
- branch master updated (5ed7f28 -> 9ba8889), Efraim Flashner, 2016/10/23
- 04/06: gnu: gambit-c: Update to 4.7.9., Efraim Flashner, 2016/10/23
- 05/06: gnu: gambit-c: Use 'modify-phases' syntax., Efraim Flashner, 2016/10/23
- 01/06: gnu: hop: Update to 2.5.1., Efraim Flashner, 2016/10/23
- 02/06: gnu: hop: Use 'modify-phases' syntax.,
Efraim Flashner <=
- 03/06: gnu: bigloo: Use 'modify-phases' syntax., Efraim Flashner, 2016/10/23
- 06/06: gnu: gambit-c: Update to 4.8.5., Efraim Flashner, 2016/10/23