diff options
author | EuAndreh <eu@euandre.org> | 2024-08-13 05:32:48 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-08-13 05:32:48 -0300 |
commit | 37eece0efd628793397540b4e2d29c54582b28c3 (patch) | |
tree | 1961c1e0856c7b3f4ee5fe5c5101eb46ecad2661 | |
parent | queue.scm: Disable Go test timeout (diff) | |
download | package-repository-37eece0efd628793397540b4e2d29c54582b28c3.tar.gz package-repository-37eece0efd628793397540b4e2d29c54582b28c3.tar.xz |
queue.scm: Separate stdlib binaries into its own output
-rw-r--r-- | src/org/euandre/queue.scm | 7 |
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))))))) |