[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: gnu: vlang: Correctly refer to output directories.
From: |
guix-commits |
Subject: |
02/02: gnu: vlang: Correctly refer to output directories. |
Date: |
Tue, 6 Oct 2020 02:50:52 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit 527b27f14c110bda4c02bc3f6ee2efb1129458c4
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Tue Oct 6 09:45:13 2020 +0300
gnu: vlang: Correctly refer to output directories.
* gnu/packages/vlang.scm (vlang)[arguments]: In custom 'install phase
correctly refer to 'outputs'.
---
gnu/packages/vlang.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/vlang.scm b/gnu/packages/vlang.scm
index 659f9e0..e0b2e7b 100644
--- a/gnu/packages/vlang.scm
+++ b/gnu/packages/vlang.scm
@@ -85,8 +85,8 @@
(invoke "./v" "test-fixed")))
#t))
(replace 'install
- (lambda _
- (let* ((bin (string-append (assoc-ref %outputs "out") "/bin"))
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let* ((bin (string-append (assoc-ref outputs "out") "/bin"))
(tools (string-append bin "/cmd/tools"))
(thirdparty (string-append bin "/thirdparty"))
(vlib (string-append bin "/vlib"))