mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 22:16:32 +01:00
gnu: Add go-modernc-org-memory.
* gnu/packages/golang-xyz.scm (go-modernc-org-memory): New variable. Change-Id: Id561b8c4a794cb5da1e784c22daec1f6f9004e89
This commit is contained in:
parent
804f22e9e9
commit
fcb9727831
1 changed files with 24 additions and 0 deletions
|
@ -10796,6 +10796,30 @@ (define-public go-k8s-io-utils
|
|||
@url{https://pkg.go.dev/std#stdlib,Go standard libs}.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public go-modernc-org-memory
|
||||
(package
|
||||
(name "go-modernc-org-memory")
|
||||
(version "1.8.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://gitlab.com/cznic/memory")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "066pzk0i1jxahialzp97ra0k0f191y1756sgppiw50zkpnpwzjxr"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:import-path "modernc.org/memory"))
|
||||
(propagated-inputs
|
||||
(list go-modernc-org-mathutil))
|
||||
(home-page "https://gitlab.com/cznic/memory")
|
||||
(synopsis "Memory allocator implementation")
|
||||
(description "Package memory implements a memory allocator.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public go-mvdan-cc-editorconfig
|
||||
(package
|
||||
(name "go-mvdan-cc-editorconfig")
|
||||
|
|
Loading…
Reference in a new issue