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
This commit is contained in:
Sharlatan Hellseher 2025-02-23 22:38:24 +00:00
parent 5f3e979c7c
commit 3290afde83
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 27 additions and 26 deletions

View file

@ -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")