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. ;;