diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-22 19:46:28 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-21 23:42:16 +0000 |
commit | 4e422224c8ddd977cc6d78cf729569a6c4a6be26 (patch) | |
tree | e1c9e822ccfc6de1d12d5ab795cc011aca9ab681 | |
parent | 172323d41e77dc9968707914ebdd0ed9864637aa (diff) |
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
-rw-r--r-- | gnu/packages/golang-xyz.scm | 24 | ||||
-rw-r--r-- | gnu/packages/golang.scm | 23 |
2 files changed, 24 insertions, 23 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index feb0c6e07b..4d409fbf31 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -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") diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index f7cd32030b..d1c610b77a 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -5443,29 +5443,6 @@ sinks and sources.") or capture raw audio.") (license license:expat)))) -(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 - '(#: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-git-sr-ht-adnano-go-gemini (package (name "go-git-sr-ht-adnano-go-gemini") |