gnu: Add go-github-com-karpeleslab-reflink.

* gnu/packages/golang-xyz.scm (go-github-com-karpeleslab-reflink): New variable.

Change-Id: Ice7ea9553cf2c8f9139630d7ec9bc243528292a4
Modified-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Arthur Rodrigues 2025-08-17 12:22:37 -03:00 committed by Sharlatan Hellseher
parent 50b5f09d81
commit 680827e376
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -11416,6 +11416,32 @@ resources located relative to the executable file.")
"This package provides a simple way to create a system service.")
(license license:zlib)))
(define-public go-github-com-karpeleslab-reflink
(package
(name "go-github-com-karpeleslab-reflink")
(version "1.0.2")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/KarpelesLab/reflink")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "16x01ff1w4xcdl41iicsrsxpk4ba6xf1g1hlq3qx1f098k4s3nci"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/KarpelesLab/reflink"))
(propagated-inputs
(list go-golang-org-x-sys))
(home-page "https://github.com/KarpelesLab/reflink")
(synopsis "Reflink file copy in Golang")
(description
"This package implements a functionality to perform efficient file copies
using reflink operations on compatible filesystems such as btrfs and xfs.")
(license license:expat)))
(define-public go-github-com-karrick-godirwalk
(package
(name "go-github-com-karrick-godirwalk")