diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 7c255ceb53..2ebb1251e0 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -19,6 +19,7 @@ ;;; Copyright © 2021 Sarah Morgensen ;;; Copyright © 2021 raingloom ;;; Copyright © 2021, 2023, 2024 Sharlatan Hellseher +;;; Copyright © 2022 (unmatched-parenthesis ;;; Copyright © 2022 Dhruvin Gandhi ;;; Copyright © 2022 Dominic Martinez ;;; Copyright © 2023 Benjamin @@ -32,9 +33,9 @@ ;;; Copyright © 2023 Timo Wilken ;;; Copyright © 2023 Wilko Meyer ;;; Copyright © 2024 Artyom V. Poptsov -;;; Copyright © 2024 Troy Figiel ;;; Copyright © 2024 Herman Rimm ;;; Copyright © 2024 Jesse Eisses +;;; Copyright © 2024 Troy Figiel ;;; ;;; This file is part of GNU Guix. ;;; @@ -155,6 +156,31 @@ a human-readable byte format.") search functionality to database applications.") (license license:expat))) +(define-public go-git-sr-ht-sircmpwn-getopt + (package + (name "go-git-sr-ht-sircmpwn-getopt") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://git.sr.ht/~sircmpwn/getopt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0f9rammnmhaz21qkmz7qf76r8jlzi323g05ps3j7gwrxlw7442a6")))) + (build-system go-build-system) + (arguments + (list #:import-path "git.sr.ht/~sircmpwn/getopt")) + (native-inputs + (list go-github-com-stretchr-testify)) + (home-page "https://git.sr.ht/~sircmpwn/getopt") + (synopsis "POSIX getopt for Go") + (description + "This package provides a POSIX-compatible implementation of +@code{getopt} for Go.") + (license license:bsd-3))) + (define-public go-git-sr-ht-sircmpwn-go-bare (package (name "go-git-sr-ht-sircmpwn-go-bare") diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 3d119b4221..e9fbcf70e0 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -8402,30 +8402,6 @@ provides an API similar to that of NET/HTTP to facilitate the development of Gemini clients and servers.") (license license:expat))) -(define-public go-git-sr-ht-sircmpwn-getopt - (package - (name "go-git-sr-ht-sircmpwn-getopt") - (version "1.0.0") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://git.sr.ht/~sircmpwn/getopt") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0f9rammnmhaz21qkmz7qf76r8jlzi323g05ps3j7gwrxlw7442a6")))) - (build-system go-build-system) - (arguments - (list #:import-path "git.sr.ht/~sircmpwn/getopt")) - (propagated-inputs (list go-github-com-stretchr-testify)) - (home-page "https://git.sr.ht/~sircmpwn/getopt") - (synopsis "POSIX getopt for Go") - (description - "This package provides a POSIX-compatible implementation of -@code{getopt} for Go.") - (license license:bsd-3))) - (define-public gofumpt (package (name "gofumpt")