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:
Sharlatan Hellseher 2024-12-18 03:13:48 +00:00
parent 804f22e9e9
commit fcb9727831
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -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")