summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorRoman Scherer <roman@burningswell.com>2026-01-01 17:21:02 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-02-26 22:07:05 +0000
commitb5f97062e50e0f5e66b213203515d69b7addbff0 (patch)
tree069beff252b33c4c4b2a0f53a8f5e797f7507e51 /gnu
parent601db48ae2a16720570f0dae94db663e58b30e20 (diff)
gnu: Add go-github-com-ncruces-sort.
* gnu/packages/golang-web.scm (go-github-com-ncruces-sort): New variable. Change-Id: I28a72f2e0632ed0cc69b4c016eb3f77a114e68f1 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/golang-xyz.scm25
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index d5b58893bc3..44df8f6238f 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -18927,6 +18927,31 @@ Go @code{time.Time} values. Julian days are used by SQLite and other
databases for date/time storage.")
(license license:unlicense)))
+(define-public go-github-com-ncruces-sort
+ (package
+ (name "go-github-com-ncruces-sort")
+ (version "0.1.6")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/ncruces/sort")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "07kamgkqhhn1klybx9z11a5pznra89pk1316b5x53jvj3116qjyn"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:skip-build? #t
+ #:import-path "github.com/ncruces/sort"))
+ (home-page "https://github.com/ncruces/sort")
+ (synopsis "Additional sorting algorithms for Go")
+ (description
+ "This package provides additional sorting algorithms for Go, including a
+stable natural sort and other utilities.")
+ (license license:expat)))
+
(define-public go-github-com-netflix-go-expect
(package
(name "go-github-com-netflix-go-expect")