diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-03-22 21:23:09 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-03-27 22:58:44 +0000 |
commit | dfd5b964590fef2f58099dbfbf31bf564fbee9b1 (patch) | |
tree | 9a11d91d785b530460270a9a78a540d033a9443b /gnu/packages/golang-xyz.scm | |
parent | d2dcd4c7e1b85392759c966f14c810de4ec233c0 (diff) | |
download | guix-dfd5b964590fef2f58099dbfbf31bf564fbee9b1.tar.gz |
gnu: go-github-com-alecthomas-units: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-alecthomas-units): Move from here ... * gnu/packages/golang-xyz.scm: ... to here. * gnu/packages/xdisorg.scm: Remove (gnu packages golang). Change-Id: I9a4d7da82c9ca1b3c4e0d07d97d8fcde30590e33
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 5f914f28ae..2f766fc116 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -202,6 +202,7 @@ structs. The approach is similar to how other marshallers work in Golang, (license license:expat))) (define-public go-github-com-alecthomas-template + ;; No release, see <https://github.com/alecthomas/template/issues/7>. (let ((commit "a0175ee3bccc567396460bf5acd36800cb10c49c") (revision "0")) (package @@ -228,6 +229,34 @@ backslash immediately after a closing delimiter will delete all subsequent newlines until a non-newline.") (license license:bsd-3)))) +(define-public go-github-com-alecthomas-units + ;; No release, see <https://github.com/alecthomas/units/issues/9>. + (let ((commit "2efee857e7cfd4f3d0138cc3cbb1b4966962b93a") + (revision "0")) + (package + (name "go-github-com-alecthomas-units") + (version "0.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/alecthomas/units") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1j65b91qb9sbrml9cpabfrcf07wmgzzghrl7809hjjhrmbzri5bl")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/alecthomas/units")) + (native-inputs + (list go-github-com-stretchr-testify)) + (home-page "https://github.com/alecthomas/units") + (synopsis "Helpful unit multipliers and functions for Go") + (description + "This library provides unit multipliers and functions for Go.") + (license license:expat)))) + (define-public go-github-com-anmitsu-go-shlex (package (name "go-github-com-anmitsu-go-shlex") |