nckx pushed a commit to branch master
in repository guix.
commit 226221df6fd93c29960b43243cf881c65e3baad5
Author: Tobias Geerinckx-Rice <[email protected]>
AuthorDate: Mon Oct 4 21:19:54 2021 +0200
gnu: wireguard-tools: Fix doc installation.
* gnu/packages/vpn.scm (wireguard-tools)[arguments]: Add missing out.
---
gnu/packages/vpn.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/vpn.scm b/gnu/packages/vpn.scm
index 6d0d10d..d707d07 100644
--- a/gnu/packages/vpn.scm
+++ b/gnu/packages/vpn.scm
@@ -1046,8 +1046,8 @@ WireGuard was added to Linux 5.6.")
(delete 'configure) ; no configure script
(add-after 'install 'install-contrib-docs
(lambda* (#:key outputs #:allow-other-keys)
- (let ((out (assoc-ref outputs "out"))
- (doc "/share/doc/wireguard-tools"))
+ (let* ((out (assoc-ref outputs "out"))
+ (doc (string-append out "/share/doc/wireguard-tools")))
(copy-recursively "contrib/" doc))))
(add-after 'install 'wrap-wg-quick
(lambda* (#:key inputs outputs #:allow-other-keys)