gnu: Add go-github-com-facebookgo-flagenv.

* gnu/packages/golang-xyz.scm (go-github-com-facebookgo-flagenv): New variable.

Change-Id: Ia1a706f7d1189f6427698c6a37f599ca13e7c8d0
This commit is contained in:
Sharlatan Hellseher 2025-09-06 23:14:44 +01:00
parent 98182c8f07
commit 0bde5e3d0a
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -7070,6 +7070,31 @@ in a consistent state and never represent an in-progress write.")
;; <...>
(license license:bsd-3)))
(define-public go-github-com-facebookgo-flagenv
(package
(name "go-github-com-facebookgo-flagenv")
(version "0.0.0-20160425205200-fcd59fca7456")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/facebookarchive/flagenv")
(commit (go-version->git-ref version))))
(file-name (git-file-name name version))
(sha256
(base32 "0c7fw4y4gmdrn66dx7la637lx0hvs1w27x9j12wdx037n51r078g"))))
(build-system go-build-system)
(arguments
(list
#:tests? #f ;Tests require dated code <github.com/facebookgo/ensure>
#:import-path "github.com/facebookgo/flagenv"))
(home-page "https://github.com/facebookgo/flagenv")
(synopsis "Populate flags from environment variables")
(description
"Package flagenv provides the ability to populate flags from environment
variables.")
(license license:bsd-3)))
(define-public go-github-com-facette-natsort
(package
(name "go-github-com-facette-natsort")