gnu: Add go-github-com-joho-godotenv.

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

Change-Id: Ifb8235d5bc2772545ba7ec9ad1014e505f7a59e3
This commit is contained in:
Sharlatan Hellseher 2025-01-02 20:19:58 +00:00
parent e7ce9baeae
commit ce26a2eab8
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -7355,6 +7355,30 @@ (define-public go-github-com-johnkerl-lumin
library.")
(license license:bsd-2)))
(define-public go-github-com-joho-godotenv
(package
(name "go-github-com-joho-godotenv")
(version "1.5.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/joho/godotenv")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "03vijs05k31jdf24pzj3vlk6b5jxf894v1kvzals4wzclyq2h3ch"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/joho/godotenv"))
(home-page "https://github.com/joho/godotenv")
(synopsis "Golang libary to load environment variables from @code{.env}")
(description
"This package provides a Go port of the Ruby's dotenv library
https://github.com/bkeepers/dotenv.")
(license license:expat)))
(define-public go-github-com-jonboulle-clockwork
(package
(name "go-github-com-jonboulle-clockwork")