From d43b4d77581c6e330ff974d5c2108bbe09735ba4 Mon Sep 17 00:00:00 2001 From: Wilko Meyer Date: Wed, 18 Oct 2023 11:38:23 +0200 Subject: gnu: Add go-github-com-facette-natsort. * gnu/packages/golang-xyz.scm (go-github-com-facette-natsort): New variable. Signed-off-by: Sharlatan Hellseher Change-Id: I23ab432b5a7f35d2f3144cfd68cfff75683eb592 --- gnu/packages/golang-xyz.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'gnu') diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index bf177e9419..9968bc9516 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -29,6 +29,7 @@ ;;; Copyright © 2023 Sergey Trofimov ;;; Copyright © 2023 Thomas Ieong ;;; Copyright © 2023 Timo Wilken +;;; Copyright © 2023 Wilko Meyer ;;; Copyright © 2024 Artyom V. Poptsov ;;; Copyright © 2024 Troy Figiel ;;; @@ -1089,6 +1090,31 @@ scanner API made public.") for @code{Set}, @code{Get}, @code{Delete} and @code{Len}.") (license license:expat))) +(define-public go-github-com-facette-natsort + (package + (name "go-github-com-facette-natsort") + (version "0.0.0-20181210072756-2cd4dd1e2dcb") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/facette/natsort") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0kfas7nq7cfrbaqvpmifg2p8v8z0d2kdqjb7p9y6r0rpdzl2zy6p")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/facette/natsort")) + (home-page "https://github.com/facette/natsort") + (synopsis "Natural strings sorting in Go") + (description + "This package provides an implementation of +@url{https://web.archive.org/web/20210803201519/http://davekoelle.com/alphanum.html,the +Alphanum Algorithm} developed by Dave Koelle in Go.") + (license license:bsd-3))) + (define-public go-github-com-gabriel-vasile-mimetype (package (name "go-github-com-gabriel-vasile-mimetype") -- cgit v1.2.3