guix-patches
[Top][All Lists]
Advanced

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

[bug#54560] [PATCH 11/47] gnu: Add go-github-com-josharian-intern.


From: Leo Nikkilä
Subject: [bug#54560] [PATCH 11/47] gnu: Add go-github-com-josharian-intern.
Date: Fri, 25 Mar 2022 15:31:35 +0200

* gnu/packages/golang.scm (go-github-com-josharian-intern): New
variable.
---
 gnu/packages/golang.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index a46a6f955b..a9286f8b8a 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -9942,6 +9942,31 @@ (define-public go-github-com-go-stack-stack
     (home-page "https://github.com/go-stack/stack";)
     (license license:expat)))
 
+(define-public go-github-com-josharian-intern
+  (package
+    (name "go-github-com-josharian-intern")
+    (version "1.0.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/josharian/intern";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1za48ppvwd5vg8vv25ldmwz1biwpb3p6qhf8vazhsfdg9m07951c"))))
+    (build-system go-build-system)
+    (arguments
+     '(#:import-path "github.com/josharian/intern"))
+    (synopsis "Intern Go strings")
+    (description
+     "Package intern interns strings.  Interning is best effort only.
+Interned strings may be removed automatically at any time without
+notification.  All functions may be called concurrently with themselves
+and each other.")
+    (home-page "https://github.com/josharian/intern";)
+    (license license:expat)))
+
 (define-public go-google-golang-org-protobuf
   (package
     (name "go-google-golang-org-protobuf")
-- 
2.34.0






reply via email to

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