~ruther/guix-local

680827e3760b64b6b97ef8a2c9b966320ebda0ea — Arthur Rodrigues 1 year, 1 month ago 50b5f09
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>
1 files changed, 26 insertions(+), 0 deletions(-)

M gnu/packages/golang-xyz.scm
M gnu/packages/golang-xyz.scm => gnu/packages/golang-xyz.scm +26 -0
@@ 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")