guix_mirror_bot pushed a commit to branch master
in repository guix.

commit b5c159c14d2ba60f6c3d5a0852b55d37985c6e78
Author: Patrick Norton <[email protected]>
AuthorDate: Tue Jan 6 08:42:19 2026 -0500

    gnu: Add go-github-com-blakesmith-ar.
    
    * gnu/packages/golang-compression.scm (go-github-com-blakesmith-ar): New
    variable.
    
    Change-Id: I0ba5b6617100ae919687193c1ca4c9e97aeadfe5
    Relates-to: guix/guix!5417
    Reviewed-by: Arthur Rodrigues <[email protected]>
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/golang-compression.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/golang-compression.scm 
b/gnu/packages/golang-compression.scm
index 3238b33d07..e8f1baa527 100644
--- a/gnu/packages/golang-compression.scm
+++ b/gnu/packages/golang-compression.scm
@@ -150,6 +150,31 @@ the @code{c2go} tool at
 
@url{https://github.com/andybalholm/c2go,https://github.com/andybalholm/c2go}.";)
     (license license:expat)))
 
+(define-public go-github-com-blakesmith-ar
+  (package
+    (name "go-github-com-blakesmith-ar")
+    (version "0.0.0-20190502131153-809d4375e1fb")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/blakesmith/ar";)
+              (commit (go-version->git-ref version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "00fxkc04b9cb53xxzw5gdqqpwlqv9n5kk0yn2lb5w4rgj5gm8ph1"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/blakesmith/ar"
+      #:test-flags #~(list "-vet=off")))
+    (home-page "https://github.com/blakesmith/ar";)
+    (synopsis "Golang archive file reader")
+    (description
+     "This package provides a Golang file reader for archive files generated
+with @code{ar}.")
+    (license license:expat)))
+
 (define-public go-github-com-bodgit-sevenzip
   (package
     (name "go-github-com-bodgit-sevenzip")

Reply via email to