guix-commits
[Top][All Lists]
Advanced

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

02/15: gnu: Add go-github-com-percent


From: guix-commits
Subject: 02/15: gnu: Add go-github-com-percent
Date: Sat, 1 Jan 2022 09:13:13 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit e556e97f90c41697e42ee0914496569646d2af5c
Author: Collin J. Doering <collin@rekahsoft.ca>
AuthorDate: Sun Dec 26 22:03:56 2021 -0500

    gnu: Add go-github-com-percent
    
    * gnu/packages/golang.scm (go-github-com-percent): New Variable.
    
    Co-authored-by: Ludovic Courtès <ludo@gnu.org>
---
 gnu/packages/golang.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 1223887bf2..d64f14c453 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -8846,3 +8846,26 @@ written to test improvements to / replace the routing 
logic in
 @url{https://github.com/yggdrasil-network/yggdrasil-go,Yggdrasil}, but it may
 be useful for other network applications.")
     (license license:mpl2.0)))
+
+(define-public go-github-com-percent
+  (package
+    (name "go-github-com-percent")
+    (version "0.2.1")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/mtibben/percent";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1iqivw8pigj259rj5yifibbvic70f9hb7k24a4sa967s4fj6agb6"))))
+    (build-system go-build-system)
+    (arguments
+     '(#:import-path "github.com/mtibben/percent"
+       #:phases %standard-phases))
+    (synopsis "Package percent escapes strings using percent-encoding")
+    (description
+     "Package percent escapes strings using percent-encoding.")
+    (home-page "https://github.com/mtibben/percent";)
+    (license license:expat)))



reply via email to

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