guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 5e679fc794184470f685ae7f7bbef8c771246836
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Jul 10 11:55:27 2025 +0100

    gnu: Add go-github-com-fvbommel-sortorder.
    
    * gnu/packages/golang-xyz.scm (go-github-com-fvbommel-sortorder): New 
variable.
    
    Change-Id: I4def6ab952c14e541626612a55a3a7a97612f3ed
---
 gnu/packages/golang-xyz.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index d78879b60e..2517a9722c 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -6566,6 +6566,29 @@ quoting, commenting, and escaping.")
      "File system notifications for Go")
     (license license:bsd-3)))
 
+(define-public go-github-com-fvbommel-sortorder
+  (package
+    (name "go-github-com-fvbommel-sortorder")
+    (version "1.1.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/fvbommel/sortorder";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "01cdxp9bqg1dlsf0nkb70gssr9mh250agfzyksx875m6ys1x37g7"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/fvbommel/sortorder"))
+    (home-page "https://github.com/fvbommel/sortorder";)
+    (synopsis "Sort orders and comparison functions")
+    (description
+     "Package sortorder implements sort orders and comparison functions.")
+    (license license:expat)))
+
 (define-public go-github-com-fxamacker-cbor-v2
   (package
     (name "go-github-com-fxamacker-cbor-v2")

Reply via email to