diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-09-14 22:29:28 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-11-09 21:33:46 +0000 |
commit | a4ca819384e851b8de3f67351c2857a4466c95e2 (patch) | |
tree | ed387528547361cfcbcf6a73f4c8dd1b7e43ccad /gnu/packages/golang.scm | |
parent | 38cccec3cb8259851e33234207e84563222d0243 (diff) | |
download | guix-a4ca819384e851b8de3f67351c2857a4466c95e2.tar.gz guix-a4ca819384e851b8de3f67351c2857a4466c95e2.zip |
gnu: go-github-com-go-git-go-billy: Update to 5.5.0.
* gnu/packages/golang.scm (go-github-com-go-git-go-billy): Update to 5.5.0.
[propagated-inputs]: Add go-github-com-cyphar-filepath-securejoin.
[native-inputs]: Add go-github-com-onsi-gomega.
Change-Id: I1bea1c54507e4c23d770bbe1bbce722799f026a8
Diffstat (limited to 'gnu/packages/golang.scm')
-rw-r--r-- | gnu/packages/golang.scm | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 7df540ba41..170dd44c00 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -6059,7 +6059,7 @@ errors (warnings).") (define-public go-github-com-go-git-go-billy (package (name "go-github-com-go-git-go-billy") - (version "5.0.0") + (version "5.5.0") (source (origin (method git-fetch) (uri (git-reference @@ -6068,14 +6068,17 @@ errors (warnings).") (file-name (git-file-name name version)) (sha256 (base32 - "1wdzczfk1n50dl2zpgf46m69b0sm8qkan5xyv82pk9x53zm1dmdx")))) + "1r7hfwc6lqnb7jhbbmicdlb3yipjyazq3pndpffw026fcq7jhxg1")))) (build-system go-build-system) (arguments - `(#:import-path "github.com/go-git/go-billy/v5")) + (list + #:import-path "github.com/go-git/go-billy/v5")) (propagated-inputs - (list go-golang-org-x-sys)) + (list go-github-com-cyphar-filepath-securejoin + go-golang-org-x-sys)) (native-inputs - (list go-gopkg-in-check-v1)) + (list go-github-com-onsi-gomega + go-gopkg-in-check-v1)) (home-page "https://github.com/go-git/go-billy/") (synopsis "File system abstraction for Go") (description "Billy implements an interface based on the OS's standard |