guix-patches
[Top][All Lists]
Advanced

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

[bug#54560] [PATCH 19/47] gnu: Add go-github-com-oklog-ulid.


From: Leo Nikkilä
Subject: [bug#54560] [PATCH 19/47] gnu: Add go-github-com-oklog-ulid.
Date: Fri, 25 Mar 2022 15:31:43 +0200

* gnu/packages/golang.scm (go-github-com-oklog-ulid): 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 ebd2ac95b2..c84f3b499c 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -10153,6 +10153,31 @@ (define-public go-github-com-oklog-run
     (home-page "https://github.com/oklog/run";)
     (license license:asl2.0)))
 
+(define-public go-github-com-oklog-ulid
+  (package
+    (name "go-github-com-oklog-ulid")
+    (version "1.3.1")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/oklog/ulid";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0hybwyid820n80axrk863k2py93hbqlq6hxhf84ppmz0qd0ys0gq"))))
+    (build-system go-build-system)
+    (arguments
+     '(#:import-path "github.com/oklog/ulid"))
+    (synopsis "Universally Unique Lexicographically Sortable Identifier
+(ULID) in Go")
+    (description
+     "Universally Unique Lexicographically Sortable Identifier (ULID) in
+Go.  A Go port of @code{ulid/javascript} with binary format
+implemented.")
+    (home-page "https://github.com/oklog/ulid";)
+    (license license:asl2.0)))
+
 (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]