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:
parent
c4e4b85397
commit
bc58bb9bdf
|
@ -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))))
|
||||
|
|
Loading…
Reference in New Issue