From bd71c053b17cc0f93c3123e7be2da7d276ea850e Mon Sep 17 00:00:00 2001 From: "Collin J. Doering" Date: Mon, 22 May 2023 13:39:23 -0400 Subject: [PATCH] rekahsoft-gnu: Add go-github-com-darthsim-godotenv --- rekahsoft-gnu/packages/golang.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/rekahsoft-gnu/packages/golang.scm b/rekahsoft-gnu/packages/golang.scm index 7f8cbf7..9d05ecf 100644 --- a/rekahsoft-gnu/packages/golang.scm +++ b/rekahsoft-gnu/packages/golang.scm @@ -146,6 +146,29 @@ platforms. Gox will also build the cross-compilation toolchain for you.") processes from your @code{Procfile} in a single terminal.") (license license:expat))) +(define-public go-github-com-darthsim-godotenv + (package + (name "go-github-com-darthsim-godotenv") + (version "1.3.1") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/DarthSim/godotenv") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0fb9nl5qrnv7f9w0pgg00ak34afw9kjgcql0l38z22faz2bhgl1q")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/DarthSim/godotenv")) + (home-page "https://github.com/DarthSim/godotenv") + (synopsis "GoDotEnv") + (description + "Package godotenv is a go port of the ruby dotenv library +(@@url{https://github.com/bkeepers/dotenv,https://github.com/bkeepers/dotenv})") + (license license:expat))) + ;; TODO: this package is not yet complete, but was accidentally ;; committed. Commenting it out until it is completed. ;;