mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: go-github-com-google-go-querystring: Fix indentation.
* gnu/packages/golang.scm (go-github-com-google-go-querystring): Fix indentation. Change-Id: I5f61abbc5f2697c5b2912007fd924e178c97c740
This commit is contained in:
parent
316ef05c02
commit
431ebc223b
1 changed files with 25 additions and 23 deletions
|
@ -5396,29 +5396,31 @@ and from termios translations, readCh, reading passwords, etc.")
|
|||
(license license:bsd-3))))
|
||||
|
||||
(define-public go-github-com-google-go-querystring
|
||||
(package
|
||||
(name "go-github-com-google-go-querystring")
|
||||
(version "1.1.0")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/google/go-querystring")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"15k460c23nsmqd1nx3mvrnazws8bpb1gafrmffx7vf91m200mnwa"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
`(#:import-path "github.com/google/go-querystring/query"
|
||||
#:unpack-path "github.com/google/go-querystring"))
|
||||
(native-inputs
|
||||
(list go-github-com-google-go-cmp))
|
||||
(home-page "https://github.com/google/go-querystring/")
|
||||
(synopsis "Library for encoding structs into URL query parameters")
|
||||
(description "@code{go-querystring} is Go library for encoding structs
|
||||
into URL query parameters.")
|
||||
(license license:bsd-3)))
|
||||
(package
|
||||
(name "go-github-com-google-go-querystring")
|
||||
(version "1.1.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/google/go-querystring")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "15k460c23nsmqd1nx3mvrnazws8bpb1gafrmffx7vf91m200mnwa"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:import-path "github.com/google/go-querystring/query"
|
||||
#:unpack-path "github.com/google/go-querystring"))
|
||||
(native-inputs
|
||||
(list go-github-com-google-go-cmp))
|
||||
(home-page "https://github.com/google/go-querystring/")
|
||||
(synopsis "Library for encoding structs into URL query parameters")
|
||||
(description
|
||||
"@code{go-querystring} is Go library for encoding structs into URL query
|
||||
parameters.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define (go-gotest-tools-source version sha256-base32-hash)
|
||||
(origin
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue