gnu: Add go-github-com-direnv-go-dotenv.

* gnu/packages/golang.scm (go-github-com-direnv-go-dotenv): New variable.
This commit is contained in:
Leo Famulari 2019-02-01 12:21:38 +01:00
parent c4e4b85397
commit bc58bb9bdf
No known key found for this signature in database
GPG Key ID: 2646FA30BACA7F08
1 changed files with 25 additions and 0 deletions

View File

@ -3365,3 +3365,28 @@ have super fancy logs.")
(synopsis "Filesystem-related functions for Go")
(description "Package fs provides filesystem-related functions.")
(license license:bsd-3))))
(define-public go-github-com-direnv-go-dotenv
(let ((commit "4cce6d1a66f7bc8dc730eab85cab6af1b801abed")
(revision "0"))
(package
(name "go-github-com-direnv-go-dotenv")
(version (git-version "0.0.0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/direnv/go-dotenv")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"00wn4fc2lma0csf6ryvlc6k9jbpbifm4n7i3kkd2xrfw5qlm29b6"))))
(build-system go-build-system)
(arguments
'(#:import-path "github.com/direnv/go-dotenv"))
(home-page "https://github.com/direnv/go-dotenv")
(synopsis "Go dotenv parsing library")
(description "This package provides a library for parsing the dotenv
format in Go.")
(license license:expat))))