mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-03 09:58:57 -05:00
gnu: go-golang-org-x-exp: Adjust package style.
* gnu/packages/golang-build.scm (go-golang-org-x-exp): Fix indentation, apply list style. [description]: Place the sentence on a new line. Change-Id: I79d4682dc8ca0e5f0826f7e32c6dd01fc58aca44
This commit is contained in:
parent
1bf6123765
commit
96998167c2
1 changed files with 20 additions and 18 deletions
|
@ -262,28 +262,30 @@ (define-public go-golang-org-x-exp
|
||||||
(base32 "0ccjgv19w5p9sbcq12czmfnkjwv3b7hfljifwax6r9wk4dx0fcn7"))
|
(base32 "0ccjgv19w5p9sbcq12czmfnkjwv3b7hfljifwax6r9wk4dx0fcn7"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
'(begin
|
#~(begin
|
||||||
;; Submodules with their own go.mod files and packed as separated
|
;; Submodules with their own go.mod files and packed as separated
|
||||||
;; packages:
|
;; packages:
|
||||||
;;
|
;;
|
||||||
;; - golang.org/x/exp/event
|
;; - golang.org/x/exp/event
|
||||||
;; - golang.org/x/exp/jsonrpc2
|
;; - golang.org/x/exp/jsonrpc2
|
||||||
;; - golang.org/x/exp/shiny
|
;; - golang.org/x/exp/shiny
|
||||||
;; - golang.org/x/exp/sumbdb
|
;; - golang.org/x/exp/sumbdb
|
||||||
;; - golang.org/x/exp/typeparams
|
;; - golang.org/x/exp/typeparams
|
||||||
(for-each delete-file-recursively
|
(for-each delete-file-recursively
|
||||||
(list "event" "jsonrpc2" "shiny" "sumdb" "typeparams"))))))
|
(list "event" "jsonrpc2" "shiny" "sumdb" "typeparams"))))))
|
||||||
(build-system go-build-system)
|
(build-system go-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:import-path "golang.org/x/exp"
|
(list
|
||||||
;; Source-only package
|
#:import-path "golang.org/x/exp"
|
||||||
#:tests? #f
|
;; Source-only package
|
||||||
#:phases (modify-phases %standard-phases
|
#:tests? #f
|
||||||
(delete 'build))))
|
#:phases #~(modify-phases %standard-phases
|
||||||
|
(delete 'build))))
|
||||||
(home-page "https://golang.org/x/exp")
|
(home-page "https://golang.org/x/exp")
|
||||||
(synopsis "Experimental and deprecated Go packages")
|
(synopsis "Experimental and deprecated Go packages")
|
||||||
(description "This subrepository holds experimental and deprecated (in the
|
(description
|
||||||
@code{old} directory) packages.")
|
"This subrepository holds experimental and deprecated (in the @code{old}
|
||||||
|
directory) packages.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public go-golang-org-x-exp-typeparams
|
(define-public go-golang-org-x-exp-typeparams
|
||||||
|
|
Loading…
Reference in a new issue