summaryrefslogtreecommitdiff
path: root/gnu
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
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')
-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.")
(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