diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-08-09 20:40:01 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-08-11 13:15:38 +0100 |
commit | be1c87629672e6313f312a6d110fda87877e4c1c (patch) | |
tree | 9202e1c80fa89442a5c9f34c5c529232b5146a1e /gnu/packages | |
parent | 1d03ab99850a3d025dc0305372f82be8770b7afb (diff) | |
download | guix-be1c87629672e6313f312a6d110fda87877e4c1c.tar.gz guix-be1c87629672e6313f312a6d110fda87877e4c1c.zip |
gnu: go-github-com-delthas-go-localeinfo: Fix indentation.
* gnu/packages/golang.scm (go-github-com-delthas-go-localeinfo): Fix indentation.
Change-Id: Ida11ab38911568c1967d42d7b4e4e7b950417661
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/golang.scm | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 936684d5f2..f31f08994c 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -7008,26 +7008,26 @@ system.") (license license:expat)))) (define-public go-github-com-delthas-go-localeinfo - (package - (name "go-github-com-delthas-go-localeinfo") - (version "0.0.0-20240607105203-b2e834fc307d") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/delthas/go-localeinfo") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0817lhic77sz9lxizy2rchwssp0vzl7qxbsfghcddg6ssy1n0zhj")))) - (build-system go-build-system) - (arguments `(#:tests? #f ; FIXME: tests assume certain locale - #:import-path "github.com/delthas/go-localeinfo")) - (home-page "https://github.com/delthas/go-localeinfo") - (synopsis "Library for extracting locale information") - (description "@code{go-localeinfo} extracts monetary/numeric/time + (package + (name "go-github-com-delthas-go-localeinfo") + (version "0.0.0-20240607105203-b2e834fc307d") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/delthas/go-localeinfo") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0817lhic77sz9lxizy2rchwssp0vzl7qxbsfghcddg6ssy1n0zhj")))) + (build-system go-build-system) + (arguments `(#:tests? #f ; FIXME: tests assume certain locale + #:import-path "github.com/delthas/go-localeinfo")) + (home-page "https://github.com/delthas/go-localeinfo") + (synopsis "Library for extracting locale information") + (description "@code{go-localeinfo} extracts monetary/numeric/time formatting information, rather than the current locale name.") - (license license:expat))) + (license license:expat))) (define-public go-github-com-zalando-go-keyring (package |