gnu: Add go-modernc-org-opt.

* gnu/packages/golang-xyz.scm (go-modernc-org-opt): New variable.

Change-Id: Icf658b4e7b7558c067c54bd09ad06abf198f83d8
This commit is contained in:
Sharlatan Hellseher 2024-12-18 23:02:07 +00:00
parent aecd38b9ae
commit 50bc6a2882
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -10844,6 +10844,28 @@ (define-public go-modernc-org-memory
(description "Package memory implements a memory allocator.")
(license license:bsd-3)))
(define-public go-modernc-org-opt
(package
(name "go-modernc-org-opt")
(version "0.1.3")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://gitlab.com/cznic/opt")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "02jih8lgcyrm2v0vagdmq298rvhqkwi4pswg4nwlksdiayw356p5"))))
(build-system go-build-system)
(arguments
(list
#:import-path "modernc.org/opt"))
(home-page "https://gitlab.com/cznic/opt")
(synopsis "Command-line flag parsing")
(description "Package opt implements command-line flag parsing.")
(license license:bsd-3)))
(define-public go-modernc-org-sortutil
(package
(name "go-modernc-org-sortutil")