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

* gnu/packages/golang.scm (go-github-com-twpayne-go-vfsafero): New variable.
This commit is contained in:
Oleg Pykhalov 2020-08-09 15:55:08 +03:00
parent ae11020356
commit ded1792ef4
No known key found for this signature in database
GPG Key ID: 167F8EA5001AFA9C

View File

@ -5434,3 +5434,29 @@ temporal directories.")
(description "Package @code{vfs} provides an abstraction of the @code{os}
and @code{ioutil} packages that is easy to test.")
(license license:expat)))
(define-public go-github-com-twpayne-go-vfsafero
(package
(name "go-github-com-twpayne-go-vfsafero")
(version "1.0.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/twpayne/go-vfsafero")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"18jwxhlrjd06z8xzg9ij0irl4f79jfy5jpwiz6xqlhzb1fja19pw"))))
(build-system go-build-system)
(arguments
`(#:import-path "github.com/twpayne/go-vfsafero"))
(native-inputs
`(("go-github-com-twpayne-go-vfs" ,go-github-com-twpayne-go-vfs)
("go-github-com-spf13-afero" ,go-github-com-spf13-afero)))
(home-page "https://github.com/twpayne/go-vfsafero/")
(synopsis "Compatibility later between @code{go-vfs} and @code{afero}")
(description
"Package @code{vfsafero} provides a compatibility later between
@code{go-github-com-twpayne-go-vfs} and @code{go-github-com-spf13-afero}.")
(license license:expat)))