diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-09 22:05:12 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-21 23:47:51 +0000 |
commit | 0ed8c6d5aef0ddc72e301dc045dabe223a36f2a2 (patch) | |
tree | a6ebc804dfc7200f42f8e46dd44618c7f6f207c4 /gnu/packages/golang-xyz.scm | |
parent | f3bcadad62ab2b5bb4380ac42b9e0f9fb3a9721d (diff) |
gnu: go-github-com-stathat-go: Improve package style.
* gnu/packages/golang-xyz.scm (go-github-com-stathat-go): Fix
indentation, rearrange fields order.
[description]: Add a link to SataHat.
Change-Id: I981ed85649a8c80576d550ca0d960633932ed792
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 41 |
1 files changed, 22 insertions, 19 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 5602391b2b..1805f6aa95 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -12827,25 +12827,28 @@ all types of configuration needs and formats.") (license license:expat))) (define-public go-github-com-stathat-go - (package - (name "go-github-com-stathat-go") - (version "1.0.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/stathat/go") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zzlsl24dyr202qkr2pay22m6d0gb7ssms77wgdx0r0clgm7dihw")))) - (build-system go-build-system) - (arguments - `(#:import-path "github.com/stathat/go")) - (synopsis "Post statistics to StatHat") - (description "This is a Go package for posting to a StatHat account.") - (home-page "https://github.com/stathat/go") - (license license:expat))) + (package + (name "go-github-com-stathat-go") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stathat/go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1zzlsl24dyr202qkr2pay22m6d0gb7ssms77wgdx0r0clgm7dihw")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/stathat/go")) + (home-page "https://github.com/stathat/go") + (synopsis "Post statistics to StatHat") + (description + "This is a Go package for posting to a @url{https://www.stathat.com/, +StatHat} account.") + (license license:expat))) (define-public go-github-com-stoewer-go-strcase (package |