diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-10 11:55:27 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-22 20:13:07 +0100 |
commit | 5e679fc794184470f685ae7f7bbef8c771246836 (patch) | |
tree | 1635ace665adfbee1d0c6b64d48bc3cb46405f6a /gnu/packages/golang-xyz.scm | |
parent | 0860b4f262657faa8c1ffa07b02adb47244a04bd (diff) |
gnu: Add go-github-com-fvbommel-sortorder.
* gnu/packages/golang-xyz.scm (go-github-com-fvbommel-sortorder): New variable.
Change-Id: I4def6ab952c14e541626612a55a3a7a97612f3ed
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 23 |
1 files changed, 23 insertions, 0 deletions
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") |