summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <[email protected]>2024-09-14 22:35:21 +0100
committerSharlatan Hellseher <[email protected]>2024-11-09 21:33:47 +0000
commite6cc3a4743807a38eeebd032d4395aa22588e2f7 (patch)
tree7255597147e5e9c13522b350e8adfe2e54d9fecb
parent9399db35c2105157407fd4a59aeb0cacc58a0c54 (diff)
gnu: go-github-com-go-git-go-billy-v5: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-go-git-go-billy-v5): Move from here ... * gnu/packages/golang-xyz.scm: ... to here. Change-Id: I40d1c024b52f0530a80657d5a2416b244447be93
-rw-r--r--gnu/packages/golang-xyz.scm32
-rw-r--r--gnu/packages/golang.scm31
2 files changed, 32 insertions, 31 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 8e025a16fc..16caf6c8e5 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -2926,6 +2926,38 @@ Differentiation between text and binary files}.
@end itemize")
(license license:expat)))
+(define-public go-github-com-go-git-go-billy-v5
+ (package
+ (name "go-github-com-go-git-go-billy-v5")
+ (version "5.5.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 "1r7hfwc6lqnb7jhbbmicdlb3yipjyazq3pndpffw026fcq7jhxg1"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/go-git/go-billy/v5"))
+ (native-inputs
+ (list go-github-com-onsi-gomega
+ go-gopkg-in-check-v1))
+ (propagated-inputs
+ (list go-github-com-cyphar-filepath-securejoin
+ go-golang-org-x-sys))
+ (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 library to
+develop applications without depending on the underlying storage. This makes
+it virtually free to implement mocks and testing over file system
+operations.")
+ (license license:asl2.0)))
+
(define-public go-github-com-go-git-go-git-fixtures-v4
(package
(name "go-github-com-go-git-go-git-fixtures-v4")
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 7d6e3d2371..cb11fefb5a 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -6056,37 +6056,6 @@ errors (warnings).")
(description "Gcfg reads INI-style configuration files into Go structs.")
(license license:bsd-3)))
-(define-public go-github-com-go-git-go-billy-v5
- (package
- (name "go-github-com-go-git-go-billy-v5")
- (version "5.5.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
- "1r7hfwc6lqnb7jhbbmicdlb3yipjyazq3pndpffw026fcq7jhxg1"))))
- (build-system go-build-system)
- (arguments
- (list
- #:import-path "github.com/go-git/go-billy/v5"))
- (propagated-inputs
- (list go-github-com-cyphar-filepath-securejoin
- go-golang-org-x-sys))
- (native-inputs
- (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
-library to develop applications without depending on the underlying storage.
-This makes it virtually free to implement mocks and testing over
-file system operations.")
- (license license:asl2.0)))
-
(define-public go-github-com-jba-templatecheck
(package
(name "go-github-com-jba-templatecheck")