diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-04-12 15:06:01 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-04-12 16:58:43 +0100 |
commit | e18f8a306a3602919a0427dae51d125a9d302f3d (patch) | |
tree | 5cd2212ad96638d4658499333084f44c2710fbe3 /gnu | |
parent | 81a8d57d036ce98af523349c9c739a3b26c90206 (diff) | |
download | guix-e18f8a306a3602919a0427dae51d125a9d302f3d.tar.gz guix-e18f8a306a3602919a0427dae51d125a9d302f3d.zip |
gnu: go-go-uber-org-atomic: Move to golang-xyz.
* gnu/packages/golang.scm (go-go-uber-org-atomic): Move from here ...
* gnu/packages/golang-xyz.scm: ... to here.
Change-Id: Ib12085510b40a00e61dda2ae886754a116edd032
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 26 | ||||
-rw-r--r-- | gnu/packages/golang.scm | 25 |
2 files changed, 26 insertions, 25 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 13c23012cd..e8b2a4b5d3 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -3185,6 +3185,32 @@ string. The string can be a string retorned for @code{time.Duration} or a similar string with weeks or days too.") (license license:bsd-3))) +(define-public go-go-uber-org-atomic + (package + (name "go-go-uber-org-atomic") + (version "1.8.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/uber-go/atomic") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0grswsk7nkf7zmmychf6aj6032shyag1kgs6zf7qwxyn55dym1v8")))) + (build-system go-build-system) + (arguments + (list + #:import-path "go.uber.org/atomic")) + (native-inputs + (list go-github-com-stretchr-testify go-github-com-davecgh-go-spew)) + (home-page "https://go.uber.org/atomic") + (synopsis "Wrapper types for sync/atomic") + (description + "This package provides simple wrappers for primitive types to enforce +atomic access.") + (license license:expat))) + (define-public go-go-uber-org-automaxprocs (package (name "go-go-uber-org-automaxprocs") diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 445ca0097b..91e14ae1a3 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -8486,31 +8486,6 @@ Gemini clients and servers.") running at the end of a test.") (license license:expat))) -(define-public go-go-uber-org-atomic - (package - (name "go-go-uber-org-atomic") - (version "1.8.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/uber-go/atomic") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0grswsk7nkf7zmmychf6aj6032shyag1kgs6zf7qwxyn55dym1v8")))) - (build-system go-build-system) - (arguments - '(#:import-path "go.uber.org/atomic")) - (native-inputs - (list go-github-com-stretchr-testify go-github-com-davecgh-go-spew)) - (home-page "https://go.uber.org/atomic") - (synopsis "Wrapper types for sync/atomic") - (description - "This package provides simple wrappers for primitive types to enforce -atomic access.") - (license license:expat))) - (define-public go-go-uber-org-multierr (package (name "go-go-uber-org-multierr") |