From 527b27f14c110bda4c02bc3f6ee2efb1129458c4 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Tue, 6 Oct 2020 09:45:13 +0300 Subject: 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 659f9e01c7..e0b2e7bcfc 100644 --- a/gnu/packages/vlang.scm +++ b/gnu/packages/vlang.scm @@ -85,8 +85,8 @@ (define-public vlang (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")) -- cgit v1.2.3