mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-17 20:27:36 -05:00
gnu: Add go-github-com-operatorfoundation-monolith-go.
* gnu/packages/golang.scm (go-github-com-operatorfoundation-monolith-go): New variable.
This commit is contained in:
parent
d1f4ace68e
commit
ead243bfb6
1 changed files with 27 additions and 0 deletions
|
@ -74,6 +74,33 @@ (define-module (gnu packages golang)
|
|||
#:use-module (ice-9 match)
|
||||
#:use-module (srfi srfi-1))
|
||||
|
||||
(define-public go-github-com-operatorfoundation-monolith-go
|
||||
(package
|
||||
(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"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; ERROR: Generated bytes do not match correct answer.
|
||||
#:unpack-path "github.com/OperatorFoundation/monolith-go"
|
||||
#:import-path "github.com/OperatorFoundation/monolith-go/monolith"))
|
||||
(propagated-inputs
|
||||
`(("go-github-com-deckarep-golang-set"
|
||||
,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)))
|
||||
|
||||
(define-public go-github-com-deckarep-golang-set
|
||||
(package
|
||||
(name "go-github-com-deckarep-golang-set")
|
||||
|
|
Loading…
Reference in a new issue