mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05: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
|
@ -78,6 +78,7 @@ (define* (go-build store name inputs
|
||||||
%standard-phases))
|
%standard-phases))
|
||||||
(outputs '("out"))
|
(outputs '("out"))
|
||||||
(search-paths '())
|
(search-paths '())
|
||||||
|
(install-source? #t)
|
||||||
(import-path "")
|
(import-path "")
|
||||||
(unpack-path "")
|
(unpack-path "")
|
||||||
(tests? #t)
|
(tests? #t)
|
||||||
|
@ -102,6 +103,7 @@ (define builder
|
||||||
#:outputs %outputs
|
#:outputs %outputs
|
||||||
#:search-paths ',(map search-path-specification->sexp
|
#:search-paths ',(map search-path-specification->sexp
|
||||||
search-paths)
|
search-paths)
|
||||||
|
#:install-source? ,install-source?
|
||||||
#:import-path ,import-path
|
#:import-path ,import-path
|
||||||
#:unpack-path ,unpack-path
|
#:unpack-path ,unpack-path
|
||||||
#:tests? ,tests?
|
#:tests? ,tests?
|
||||||
|
|
|
@ -126,13 +126,14 @@ (define* (unpack #:key source import-path unpack-path #:allow-other-keys)
|
||||||
(zero? (system* "unzip" "-d" dest source))
|
(zero? (system* "unzip" "-d" dest source))
|
||||||
(zero? (system* "tar" "-C" dest "-xvf" 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."
|
"Install the source code to the output directory."
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
(source "src")
|
(source "src")
|
||||||
(dest (string-append out "/" source)))
|
(dest (string-append out "/" source)))
|
||||||
(copy-recursively source dest #:keep-mtime? #t)
|
(if install-source?
|
||||||
#t))
|
(copy-recursively source dest #:keep-mtime? #t)
|
||||||
|
#t)))
|
||||||
|
|
||||||
(define (go-package? name)
|
(define (go-package? name)
|
||||||
(string-prefix? "go-" name))
|
(string-prefix? "go-" name))
|
||||||
|
|
Loading…
Reference in a new issue