mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: go-jfmt: Fix build.
* gnu/packages/golang-check.scm (go-jfmt) [arguments]: Inherit instead of overwrite. Change-Id: Ib8de29eb877bbe70dca3c56ac7a8bcf6a1c3ae4f
This commit is contained in:
parent
37887593e9
commit
092eae0900
1 changed files with 7 additions and 3 deletions
|
@ -23084,9 +23084,13 @@ correctly.")))
|
||||||
(define-public go-jfmt
|
(define-public go-jfmt
|
||||||
(package/inherit go-zgo-at-jfmt
|
(package/inherit go-zgo-at-jfmt
|
||||||
(name "go-jfmt")
|
(name "go-jfmt")
|
||||||
(arguments (list #:install-source? #f
|
(arguments
|
||||||
#:import-path "zgo.at/jfmt/cmd/jfmt"
|
(substitute-keyword-arguments
|
||||||
#:unpack-path "zgo.at/jfmt"))
|
(package-arguments go-zgo-at-jfmt)
|
||||||
|
((#:tests? _ #t) #f)
|
||||||
|
((#:install-source? _ #t) #f)
|
||||||
|
((#:import-path _) "zgo.at/jfmt/cmd/jfmt")
|
||||||
|
((#:unpack-path _ "") "zgo.at/jfmt")))
|
||||||
(description
|
(description
|
||||||
(string-append (package-description go-zgo-at-jfmt)
|
(string-append (package-description go-zgo-at-jfmt)
|
||||||
" This package provides a command line interface (CLI) tool."))))
|
" This package provides a command line interface (CLI) tool."))))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue