guix_mirror_bot pushed a commit to branch go-team
in repository guix.

commit c9417443106cbbf4a3e8a6eb9704411d1e928845
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Feb 7 23:10:21 2026 +0000

    gnu: go-github-com-git-lfs-gitobj-v2: Reduce closure size, improve style.
    
    * gnu/packages/version-control.scm (go-github-com-git-lfs-gitobj-v2):
      Fix indentation use list style for [arguments].
      [propagated-inputs]: Remove go-github-com-stretchr-testify,
      go-github-com-pmezard-go-difflib, and go-github-com-davecgh-go-spew.
      [native-inputs]: Add go-github-com-stretchr-testify.
    
    Change-Id: I7b90ef34edb51803497453e34bffdd3ff3a786e0
---
 gnu/packages/version-control.scm | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index e51c50bf56..391981b0f9 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -3989,21 +3989,21 @@ matching.")
   (package
     (name "go-github-com-git-lfs-gitobj-v2")
     (version "2.1.1")
-    (source (origin
-              (method git-fetch)
-              (uri (git-reference
-                    (url "https://github.com/git-lfs/gitobj";)
-                    (commit (string-append "v" version))))
-              (file-name (git-file-name name version))
-              (sha256
-               (base32
-                "1sd7y4xbx00js1g2az4nq8g5lvsm4d7nqr3v4kxy8fxrfzdm63j9"))))
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/git-lfs/gitobj";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1sd7y4xbx00js1g2az4nq8g5lvsm4d7nqr3v4kxy8fxrfzdm63j9"))))
     (build-system go-build-system)
     (arguments
-     '(#:import-path "github.com/git-lfs/gitobj/v2"))
-    (propagated-inputs (list go-github-com-stretchr-testify
-                             go-github-com-pmezard-go-difflib
-                             go-github-com-davecgh-go-spew))
+     (list
+      #:import-path "github.com/git-lfs/gitobj/v2"))
+    (native-inputs
+     (list go-github-com-stretchr-testify))
     (home-page "https://github.com/git-lfs/gitobj";)
     (synopsis "Read and write git objects")
     (description

Reply via email to