sharlatan pushed a commit to branch go-team
in repository guix.
commit 471fda1601e9000369b729208225d8dd772cb629
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Feb 21 23:06:45 2025 +0000
gnu: go-github-com-operatorfoundation-monolith-go: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-operatorfoundation-monolith-go,
go-github-com-operatorfoundation-monolith-go-1.0.4): Move from here ...
* gnu/packages/golang-xyz.scm: ... to here.
Change-Id: I0a211a49b3f7dc6f34ae117f03fddeb3315dd388
---
gnu/packages/golang-xyz.scm | 50 +++++++++++++++++++++++++++++++++++++++++++++
gnu/packages/golang.scm | 49 --------------------------------------------
2 files changed, 50 insertions(+), 49 deletions(-)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 2304823c07..d5a5ee44d2 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -12944,6 +12944,56 @@ composable way such that accurate error can be
reasoned about.")
@@url{https://rfc-editor.org/rfc/rfc8010.html,RFC 8010}.")
(license license:bsd-2)))
+(define-public go-github-com-operatorfoundation-monolith-go
+ (package
+ (name "go-github-com-operatorfoundation-monolith-go")
+ (version "1.0.10")
+ (source
+ (origin
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url "https://github.com/OperatorFoundation/monolith-go")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0zzamnrakjvz9frxscyhrvyz2ikqq2klmynn218jk5dar6mc6xyf"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:skip-build? #t
+ #:import-path "github.com/OperatorFoundation/monolith-go"
+ #:test-flags
+ #~(list "-skip" (string-join
+ (list "TestEnumeratedItems"
+ "TestOptional2"
+ "TestVariableStringsPart")
+ "|"))))
+ (propagated-inputs
+ (list go-github-com-deckarep-golang-set))
+ (home-page "https://github.com/OperatorFoundation/monolith-go")
+ (synopsis "Byte sequences library")
+ (description
+ "Monolith-Go is a Go library for working with byte sequences.")
+ (license license:expat)))
+
+;; To build bitmask 0.21.11, remove when it's updated.
+(define-public go-github-com-operatorfoundation-monolith-go-1.0.4
+ (package
+ (inherit go-github-com-operatorfoundation-monolith-go)
+ (name "go-github-com-operatorfoundation-monolith-go")
+ (version "1.0.4")
+ (source
+ (origin
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url "https://github.com/OperatorFoundation/monolith-go")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "066bqlgw5h7a3kxswqlv734asb7nw2y6snsn09yqk0ixj23qw22s"))))))
+
(define-public go-github-com-orisano-pixelmatch
(package
(name "go-github-com-orisano-pixelmatch")
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 08149c54bf..20e2e35c77 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1208,55 +1208,6 @@ form that bypasses network filtering, allowing the
application to work on
networks where it would otherwise be blocked or heavily throttled.")
(license license:expat)))
-(define-public go-github-com-operatorfoundation-monolith-go
- (package
- (name "go-github-com-operatorfoundation-monolith-go")
- (version "1.0.10")
- (source
- (origin
- (method git-fetch)
- (uri
- (git-reference
- (url "https://github.com/OperatorFoundation/monolith-go")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32 "0zzamnrakjvz9frxscyhrvyz2ikqq2klmynn218jk5dar6mc6xyf"))))
- (build-system go-build-system)
- (arguments
- (list
- #:skip-build? #t
- #:import-path "github.com/OperatorFoundation/monolith-go"
- #:test-flags
- #~(list "-skip" (string-join
- (list "TestEnumeratedItems"
- "TestOptional2"
- "TestVariableStringsPart")
- "|"))))
- (propagated-inputs
- (list go-github-com-deckarep-golang-set))
- (home-page "https://github.com/OperatorFoundation/monolith-go")
- (synopsis "Byte sequences library")
- (description "Monolith-Go is a Go library for working with byte
sequences.")
- (license license:expat)))
-
-;; To build bitmask 0.21.11, remove when it's updated.
-(define-public go-github-com-operatorfoundation-monolith-go-1.0.4
- (package
- (inherit go-github-com-operatorfoundation-monolith-go)
- (name "go-github-com-operatorfoundation-monolith-go")
- (version "1.0.4")
- (source
- (origin
- (method git-fetch)
- (uri
- (git-reference
- (url "https://github.com/OperatorFoundation/monolith-go")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32 "066bqlgw5h7a3kxswqlv734asb7nw2y6snsn09yqk0ixj23qw22s"))))))
-
(define-public go-github-com-blanu-dust
(package
(name "go-github-com-blanu-dust")