aboutsummaryrefslogtreecommitdiff
path: root/src/org
diff options
context:
space:
mode:
Diffstat (limited to 'src/org')
-rw-r--r--src/org/euandre/queue.scm7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/org/euandre/queue.scm b/src/org/euandre/queue.scm
index c32cf35..1c7149d 100644
--- a/src/org/euandre/queue.scm
+++ b/src/org/euandre/queue.scm
@@ -1705,6 +1705,10 @@ connections correctly.")))
(define-public go-full
(package
(inherit go-1.22)
+ (outputs
+ (append
+ (package-outputs go-1.22)
+ '("static")))
(arguments
(substitute-keyword-arguments (package-arguments go-1.22)
((#:phases phases)
@@ -1730,7 +1734,8 @@ connections correctly.")))
(add-after 'install 'install-binaries
(lambda _
(copy-recursively "pkg"
- (string-append #$output "/lib/go/pkg"))))
+ (string-append #$output:static
+ "/lib/go/pkg"))))
(delete 'strip)))))))