summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-02-23 22:38:24 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-05-26 16:50:19 +0100
commit3290afde833c5c54bb356466dd13477b25013161 (patch)
tree9dd327b2e2aa0f50886d917807a21677909699c5 /gnu
parent5f3e979c7cce1e9f9dd346131ff3c219d6b82682 (diff)
gnu: go-github-com-git-lfs-pktline: Move to golang-vcs.
* gnu/packages/version-control.scm (go-github-com-git-lfs-pktline): Move from here ... * gnu/packages/golang-vcs.scm: ... to here. Change-Id: I83b2d4ed8b85411c1bd4bd95a38b78ae50568015
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/golang-vcs.scm27
-rw-r--r--gnu/packages/version-control.scm26
2 files changed, 27 insertions, 26 deletions
diff --git a/gnu/packages/golang-vcs.scm b/gnu/packages/golang-vcs.scm
index 2c2dcc2d11c..b110d654121 100644
--- a/gnu/packages/golang-vcs.scm
+++ b/gnu/packages/golang-vcs.scm
@@ -41,6 +41,33 @@
;;; Libraries:
;;;
+(define-public go-github-com-git-lfs-pktline
+ (let ((commit "ca444d533ef1e474d0aab99cdbeed9b048d65241")
+ (revision "1"))
+ (package
+ (name "go-github-com-git-lfs-pktline")
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url "https://github.com/git-lfs/pktline")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0mxp4c59g5b3y20ilf90b6cagbk2b473vsmdz159y4hssvi1ac7r"))))
+ (build-system go-build-system)
+ (arguments `(#:import-path "github.com/git-lfs/pktline"))
+ (native-inputs
+ (list go-github-com-stretchr-testify))
+ (home-page "https://github.com/git-lfs/pktline")
+ (synopsis "Git pkt-line Go toolkit")
+ (description
+ "This package is a Go language toolkit for reading and writing files
+using the Git pkt-line format used in various Git operations.")
+ (license license:expat))))
+
(define-public go-github-com-go-git-gcfg
(package
(name "go-github-com-go-git-gcfg")
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index f41633a9627..003995c6e56 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -4041,32 +4041,6 @@ the smallest possible conflicts and to allow a merge to be saved, tested,
interrupted, published, and collaborated on while in progress.")
(license license:gpl2+)))
-(define-public go-github-com-git-lfs-pktline
- (let ((commit "ca444d533ef1e474d0aab99cdbeed9b048d65241")
- (revision "1"))
- (package
- (name "go-github-com-git-lfs-pktline")
- (version (git-version "0.0.0" revision commit))
- (source
- (origin
- (method git-fetch)
- (uri
- (git-reference
- (url "https://github.com/git-lfs/pktline")
- (commit commit)))
- (file-name (git-file-name name version))
- (sha256
- (base32 "0mxp4c59g5b3y20ilf90b6cagbk2b473vsmdz159y4hssvi1ac7r"))))
- (build-system go-build-system)
- (arguments `(#:import-path "github.com/git-lfs/pktline"))
- (native-inputs
- (list go-github-com-stretchr-testify))
- (home-page "https://github.com/git-lfs/pktline")
- (synopsis "Git pkt-line Go toolkit")
- (description "This package is a Go language toolkit for reading and
-writing files using the Git pkt-line format used in various Git operations.")
- (license license:expat))))
-
(define-public go-github-com-git-lfs-wildmatch-v2
(package
(name "go-github-com-git-lfs-wildmatch-v2")