1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-17 04:20:44 +02:00

gnu: go-github-com-pborman-getopt: Move to golang-xyz.

* gnu/packages/golang.scm (go-github-com-pborman-getopt): Move from here ...
* gnu/packages/golang-xyz.scm: ... to here.

Change-Id: Iea88fdc069231f5520a12721a322c38a21230287
This commit is contained in:
Sharlatan Hellseher 2024-12-22 19:46:28 +00:00
parent 172323d41e
commit 4e422224c8
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 24 additions and 23 deletions

View file

@ -8340,6 +8340,30 @@ memory accessible to the kernel. It does not account for memory used by other
processes.")
(license license:bsd-3))))
(define-public go-github-com-pborman-getopt
(package
(name "go-github-com-pborman-getopt")
(version "2.1.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/pborman/getopt")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0sacv6g8cxfibxd3gnfjnzp7fynrnc4s2aaz5wbxivqqhvflc22l"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/pborman/getopt"))
(home-page "https://github.com/pborman/getopt")
(synopsis "Getopt style option parsing for Go")
(description
"This package provides traditional getopt processing for implementing
programs that use traditional command lines.")
(license license:bsd-3)))
(define-public go-github-com-pelletier-go-toml
(package
(name "go-github-com-pelletier-go-toml")