guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/09: gnu: Add go-github-com-multiformats-go-base32.


From: guix-commits
Subject: 01/09: gnu: Add go-github-com-multiformats-go-base32.
Date: Sat, 6 Apr 2024 18:04:53 -0400 (EDT)

sharlatan pushed a commit to branch master
in repository guix.

commit 93b19868e68155c023c41812c710b5dbc1023dcb
Author: Artyom V. Poptsov <poptsov.artyom@gmail.com>
AuthorDate: Sat Apr 6 11:40:39 2024 +0300

    gnu: Add go-github-com-multiformats-go-base32.
    
    * gnu/packages/golang-xyz.scm (go-github-com-multiformats-go-base32): New
      variable.
    
    Change-Id: If6c54a3c2d0a62e61e524da85c76ad6bf7f7bcbe
    Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
---
 gnu/packages/golang-xyz.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index b82e96045e..6e634212c0 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -50,6 +50,7 @@
 (define-module (gnu packages golang-xyz)
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (guix build-system go)
+  #:use-module (guix build-system copy)
   #:use-module (guix gexp)
   #:use-module (guix git-download)
   #:use-module (guix packages)
@@ -2123,6 +2124,29 @@ command line flags, config files, and default struct 
values.")
 
@url{https://github.com/judwhite/go-svc/raw/master/svc/svc_windows_test.go,here}.";)
       (license license:expat))))
 
+(define-public go-github-com-multiformats-go-base32
+  (package
+    (name "go-github-com-multiformats-go-base32")
+    (version "0.1.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/multiformats/go-base32";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0ala6gaa5r5mqcg6cdwfg492hpz41cjbfwyn1ljd6qvya3n0qqiv"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/multiformats/go-base32"))
+    (home-page "https://github.com/multiformats/go-base32";)
+    (synopsis "Go @code{base32} encoding package with @code{NoPadding} option")
+    (description
+     "@code{base32} encoding package from Go with @code{NoPadding} option")
+    (license license:bsd-3)))
+
 (define-public go-github-com-multiformats-go-varint
   (package
     (name "go-github-com-multiformats-go-varint")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]