summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2024-02-18 21:53:19 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2024-02-19 23:19:21 +0000
commita72487a9ea621f2d9f926a1d50e3d68228f93896 (patch)
tree6a6a15d73e4654c55549e44f91cf7a9861db6b50
parent4c6861b63001e6250cc52acb3003629d67cd1573 (diff)
gnu: go-github-com-goccy-go-json: Revert source snippet
Reported by Hilton Chain <hako@ultrarare.space> in <https://issues.guix.gnu.org/64916>. Introduced in commit d86c93c9cbe5. * gnu/packages/golang-web.scm (go-github-com-goccy-go-json) [source]: Add snippet deleting benchmarks files. Change-Id: I86d878bd9cd5a24fb71c1cbbd698527a40e84f05
-rw-r--r--gnu/packages/golang-web.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index c97d775fff..210d17b997 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -655,7 +655,9 @@ Encryption, JSON Web Signature, and JSON Web Token standards.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "1krid2hlvs808jl9zmv7m6zx92samc60gymhwr2mwwykicwbnks8"))))
+ (base32 "1krid2hlvs808jl9zmv7m6zx92samc60gymhwr2mwwykicwbnks8"))
+ (modules '((guix build utils)))
+ (snippet '(delete-file-recursively "benchmarks"))))
(build-system go-build-system)
(arguments
'(#:import-path "github.com/goccy/go-json"))