sharlatan pushed a commit to branch go-team
in repository guix.
commit a970d9b7ef33826406c6a77cec58e3170ddb0fee
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Sep 13 10:51:01 2024 +0100
gnu: go-github-com-google-go-querystring: Fix indentation.
* gnu/packages/golang.scm (go-github-com-google-go-querystring): Fix
indentation.
Change-Id: I5f61abbc5f2697c5b2912007fd924e178c97c740
---
gnu/packages/golang.scm | 48 +++++++++++++++++++++++++-----------------------
1 file changed, 25 insertions(+), 23 deletions(-)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 76cc9a4543..5959170fdd 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -5369,29 +5369,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