mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
build-system/go: Parameterize installing the source code.
* guix/build-system/go.scm (go-build): Add install-source? key. * guix/build/go-build-system.scm (install-source): Check if install-source? is true.
This commit is contained in:
parent
1c37f839fb
commit
c10851cf91
2 changed files with 6 additions and 3 deletions
|
@ -126,13 +126,14 @@ unset. When SOURCE is a directory, copy it instead of unpacking."
|
|||
(zero? (system* "unzip" "-d" dest source))
|
||||
(zero? (system* "tar" "-C" dest "-xvf" source))))))
|
||||
|
||||
(define* (install-source #:key outputs #:allow-other-keys)
|
||||
(define* (install-source #:key install-source? outputs #:allow-other-keys)
|
||||
"Install the source code to the output directory."
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
(source "src")
|
||||
(dest (string-append out "/" source)))
|
||||
(copy-recursively source dest #:keep-mtime? #t)
|
||||
#t))
|
||||
(if install-source?
|
||||
(copy-recursively source dest #:keep-mtime? #t)
|
||||
#t)))
|
||||
|
||||
(define (go-package? name)
|
||||
(string-prefix? "go-" name))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue