gnu: Add go-github-com-twpayne-go-vfsafero.
* gnu/packages/golang.scm (go-github-com-twpayne-go-vfsafero): New variable.master
parent
ae11020356
commit
ded1792ef4
|
@ -5434,3 +5434,29 @@ temporal directories.")
|
||||||
(description "Package @code{vfs} provides an abstraction of the @code{os}
|
(description "Package @code{vfs} provides an abstraction of the @code{os}
|
||||||
and @code{ioutil} packages that is easy to test.")
|
and @code{ioutil} packages that is easy to test.")
|
||||||
(license license:expat)))
|
(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)))
|
||||||
|
|
Reference in New Issue