mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: Add go-github-com-go-git-go-billy.
* gnu/packages/golang.scm (go-github-com-go-git-go-billy): New variable.
This commit is contained in:
parent
b3cd7c9bff
commit
c99318761c
1 changed files with 26 additions and 0 deletions
|
@ -5136,3 +5136,29 @@ (define-public go-github-com-go-git-gcfg
|
|||
(synopsis "Gcfg reads INI-style configuration files into Go structs")
|
||||
(description "Gcfg reads INI-style configuration files into Go structs.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public go-github-com-go-git-go-billy
|
||||
(package
|
||||
(name "go-github-com-go-git-go-billy")
|
||||
(version "5.0.0")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/go-git/go-billy")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1wdzczfk1n50dl2zpgf46m69b0sm8qkan5xyv82pk9x53zm1dmdx"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
`(#:import-path "github.com/go-git/go-billy/v5"))
|
||||
(native-inputs
|
||||
`(("go-gopkg-in-check-v1" ,go-gopkg-in-check-v1)))
|
||||
(home-page "https://github.com/go-git/go-billy/")
|
||||
(synopsis "Filesystem abstraction for Go")
|
||||
(description "Billy implements an interface based on the os standard
|
||||
library, allowing to develop applications without dependency on the underlying
|
||||
storage. Makes it virtually free to implement mocks and testing over
|
||||
filesystem operations.")
|
||||
(license license:asl2.0)))
|
||||
|
|
Loading…
Reference in a new issue