mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: vlang: Correctly refer to output directories.
* gnu/packages/vlang.scm (vlang)[arguments]: In custom 'install phase correctly refer to 'outputs'.
This commit is contained in:
parent
6450070b91
commit
527b27f14c
1 changed files with 2 additions and 2 deletions
|
@ -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"))
|
||||
|
|
Loading…
Reference in a new issue