summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-02-07 23:10:21 +0000
committerAndreas Enge <andreas@enge.fr>2026-02-15 14:17:45 +0100
commitdee917736f4f37e28ba9354b19bd9a8fd7ca0c95 (patch)
treed159def046feb93e1889b11a024ad5533733e716 /gnu/packages
parent24726d3bfbab5391c78126179266f0cd0418e386 (diff)
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
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/version-control.scm26
1 files changed, 13 insertions, 13 deletions
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index aff990292d7..3353745a4bc 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -4009,21 +4009,21 @@ matching.")
4009 (package 4009 (package
4010 (name "go-github-com-git-lfs-gitobj-v2") 4010 (name "go-github-com-git-lfs-gitobj-v2")
4011 (version "2.1.1") 4011 (version "2.1.1")
4012 (source (origin 4012 (source
4013 (method git-fetch) 4013 (origin
4014 (uri (git-reference 4014 (method git-fetch)
4015 (url "https://github.com/git-lfs/gitobj") 4015 (uri (git-reference
4016 (commit (string-append "v" version)))) 4016 (url "https://github.com/git-lfs/gitobj")
4017 (file-name (git-file-name name version)) 4017 (commit (string-append "v" version))))
4018 (sha256 4018 (file-name (git-file-name name version))
4019 (base32 4019 (sha256
4020 "1sd7y4xbx00js1g2az4nq8g5lvsm4d7nqr3v4kxy8fxrfzdm63j9")))) 4020 (base32 "1sd7y4xbx00js1g2az4nq8g5lvsm4d7nqr3v4kxy8fxrfzdm63j9"))))
4021 (build-system go-build-system) 4021 (build-system go-build-system)
4022 (arguments 4022 (arguments
4023 '(#:import-path "github.com/git-lfs/gitobj/v2")) 4023 (list
4024 (propagated-inputs (list go-github-com-stretchr-testify 4024 #:import-path "github.com/git-lfs/gitobj/v2"))
4025 go-github-com-pmezard-go-difflib 4025 (native-inputs
4026 go-github-com-davecgh-go-spew)) 4026 (list go-github-com-stretchr-testify))
4027 (home-page "https://github.com/git-lfs/gitobj") 4027 (home-page "https://github.com/git-lfs/gitobj")
4028 (synopsis "Read and write git objects") 4028 (synopsis "Read and write git objects")
4029 (description 4029 (description