From 5e679fc794184470f685ae7f7bbef8c771246836 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Thu, 10 Jul 2025 11:55:27 +0100 Subject: [PATCH] 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 d78879b60e403d18546e2f0d457b48aa91cf55bb..2517a9722c1f843c876b0d04dd6f645c1a21300e 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")