diff options
author | Joseph LaFreniere <joseph@lafreniere.xyz> | 2020-11-08 21:35:04 -0600 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2021-01-03 17:24:27 +0200 |
commit | 0a7d6e87bb2d56d68cc4e8d09860c9aa494485ac (patch) | |
tree | b0e040a2bab44dfa9116d09799d50a7bccfd0313 /gnu/packages/golang.scm | |
parent | 79d5a18116d597df9e3d6b607164947d3aed6c2f (diff) | |
download | guix-0a7d6e87bb2d56d68cc4e8d09860c9aa494485ac.tar guix-0a7d6e87bb2d56d68cc4e8d09860c9aa494485ac.tar.gz |
gnu: Add go-github-com-golangplus-fmt.
* gnu/packages/golang.scm (go-github-com-golangplus-fmt): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Diffstat (limited to 'gnu/packages/golang.scm')
-rw-r--r-- | gnu/packages/golang.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 60535e07bd..cd5644bb0f 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -487,6 +487,26 @@ jar struct to manage the cookies added to the cookie jar.") (home-page "https://github.com/aki237/nscjar") (license license:expat)))) +(define-public go-github-com-golangplus-fmt + (package + (name "go-github-com-golangplus-fmt") + (version "1.0.0") + (home-page "https://github.com/golangplus/fmt") + (source (origin + (method git-fetch) + (uri (git-reference + (url home-page) + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07d5kxz0f8ss3v46y0c8jg02sagi0wlaaijhjzzp0r462jyzqii7")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/golangplus/fmt")) + (synopsis "Additions to Go's standard @code{fmt} package") + (description "This package provides additions to Go's stdlib @code{fmt}.") + (license license:bsd-3))) + (define-public go-github-com-leodido-go-urn (package (name "go-github-com-leodido-go-urn") |