me
/
guix
Archived
1
0
Fork 0

gnu: Add go-github-com-twpayne-go-vfs.

* gnu/packages/golang.scm (go-github-com-twpayne-go-vfs): New variable.
master
Oleg Pykhalov 2020-08-09 15:51:12 +03:00
parent fb1cc65af1
commit ae11020356
No known key found for this signature in database
GPG Key ID: 167F8EA5001AFA9C
1 changed files with 24 additions and 0 deletions

View File

@ -5410,3 +5410,27 @@ temporal directories.")
(description (description
"Package @code{shell} returns a user's shell across multiple platforms.") "Package @code{shell} returns a user's shell across multiple platforms.")
(license license:expat))) (license license:expat)))
(define-public go-github-com-twpayne-go-vfs
(package
(name "go-github-com-twpayne-go-vfs")
(version "1.5.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/twpayne/go-vfs")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"19dm3gi45znwaqbzxhwcgkiz8059bwa3ank80hc6qhdl579bpjnz"))))
(build-system go-build-system)
(arguments
`(#:import-path "github.com/twpayne/go-vfs"))
(native-inputs
`(("go-github-com-bmatcuk-doublestar" ,go-github-com-bmatcuk-doublestar)))
(home-page "https://github.com/twpayne/go-vfs/")
(synopsis "Abstraction of the @code{os} and @code{ioutil} Go packages")
(description "Package @code{vfs} provides an abstraction of the @code{os}
and @code{ioutil} packages that is easy to test.")
(license license:expat)))