all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Wilko Meyer <w@wmeyer.eu>
To: 66603@debbugs.gnu.org
Cc: Wilko Meyer <w@wmeyer.eu>
Subject: [bug#66603] [PATCH 25/29] gnu: Add go-github-com-facette-natsort.
Date: Wed, 18 Oct 2023 11:38:23 +0200	[thread overview]
Message-ID: <20231018093836.2056-25-w@wmeyer.eu> (raw)
In-Reply-To: <20231018093836.2056-1-w@wmeyer.eu>

* gnu/packages/golang.scm (go-github-com-facette-natsort): New variable.
---
 gnu/packages/golang.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 166270d201..7d6852f661 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -9068,6 +9068,27 @@ (define-public go-github-com-emersion-go-mbox
 @code{mbox} files.")
     (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
+     '(#:import-path "github.com/facette/natsort"))
+    (home-page "https://github.com/facette/natsort")
+    (synopsis "natsort: natural strings sorting in Go")
+    (description "Package natsort implements natural strings sorting")
+    (license license:bsd-3)))
+
 (define-public go-github-com-fatih-color
   (package
     (name "go-github-com-fatih-color")
-- 
2.41.0





  parent reply	other threads:[~2023-10-18  9:41 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-10-18  9:35 [bug#66603] [PATCH 00/29] Add miller Wilko Meyer
2023-10-18  9:37 ` [bug#66603] [PATCH 01/29] gnu: Add go-github-com-lestrrat-go-envload Wilko Meyer
2023-10-18  9:38   ` [bug#66603] [PATCH 02/29] gnu: Add go-github-com-lestrrat-go-strftime Wilko Meyer
2023-10-18  9:38   ` [bug#66603] [PATCH 03/29] gnu: Add go-github-com-ledongthuc-pdf Wilko Meyer
2023-10-18  9:38   ` [bug#66603] [PATCH 04/29] gnu: Add go-github-com-orisano-pixelmatch Wilko Meyer
2023-10-18  9:38   ` [bug#66603] [PATCH 05/29] gnu: Add go-github-com-johnkerl-lumin-colors Wilko Meyer
2023-10-18  9:38   ` [bug#66603] [PATCH 06/29] gnu: Add go-github-com-chromedp-chromedp Wilko Meyer
2023-10-18  9:38   ` [bug#66603] [PATCH 07/29] gnu: Add go-github-com-chzyer-test Wilko Meyer
2023-10-18  9:38   ` [bug#66603] [PATCH 08/29] gnu: Add go-github-com-chzyer-logex Wilko Meyer
2023-10-18  9:38   ` [bug#66603] [PATCH 09/29] gnu: Add go-github-com-chzyer-readline Wilko Meyer
2023-10-18  9:38   ` [bug#66603] [PATCH 10/29] gnu: Add go-github-com-ianlancetaylor-demangle Wilko Meyer
2023-10-18  9:38   ` [bug#66603] [PATCH 11/29] gnu: Add go-github-com-chromedp-cdproto Wilko Meyer
2023-10-18  9:38   ` [bug#66603] [PATCH 12/29] gnu: Add go-github-com-chromedp-sysutil Wilko Meyer
2023-10-18  9:38   ` [bug#66603] [PATCH 13/29] gnu: Add go-github-com-gobwas-httphead Wilko Meyer
2023-10-18  9:38   ` [bug#66603] [PATCH 14/29] gnu: Add go-github-com-gobwas-pool Wilko Meyer
2023-10-18  9:38   ` [bug#66603] [PATCH 15/29] gnu: Add go-github-com-gobwas-ws Wilko Meyer
2023-10-18  9:38   ` [bug#66603] [PATCH 16/29] gnu: Add go-github-com-josharian-intern Wilko Meyer
2023-10-18  9:38   ` [bug#66603] [PATCH 17/29] gnu: Add go-github-com-mailru-easyjson Wilko Meyer
2023-10-18  9:38   ` [bug#66603] [PATCH 18/29] gnu: Add go-github-com-google-pprof Wilko Meyer
2023-10-18  9:38   ` [bug#66603] [PATCH 19/29] gnu: Add go-github-com-felixge-fgprof Wilko Meyer
2023-10-18  9:38   ` [bug#66603] [PATCH 20/29] gnu: Add go-github-com-pkg-profile Wilko Meyer
2023-10-18  9:38   ` [bug#66603] [PATCH 21/29] gnu: Add go-golang-org-x-text Wilko Meyer
2023-10-18  9:38   ` [bug#66603] [PATCH 22/29] gnu: Add go-github-com-johnkerl-miller Wilko Meyer
2023-10-18  9:38   ` [bug#66603] [PATCH 23/29] gnu: Add miller Wilko Meyer
2023-10-18  9:38   ` [bug#66603] [PATCH 24/29] gnu: Add go-github-com-kballard-go-shellquote Wilko Meyer
2023-10-18  9:38   ` Wilko Meyer [this message]
2023-10-18  9:38   ` [bug#66603] [PATCH 26/29] gnu: go-github-com-fatih-color: Update to 6.0.0 Wilko Meyer
2023-10-18  9:38   ` [bug#66603] [PATCH 27/29] gnu: go-github-com-godbus-dbus: Update to 5.1.0 Wilko Meyer
2023-10-18  9:38   ` [bug#66603] [PATCH 28/29] gnu: Add go-github-com-delthas-go-libnp Wilko Meyer
2023-10-18  9:38   ` [bug#66603] [PATCH 29/29] gnu: Add go-github-com-delthas-go-localeinfo Wilko Meyer
2024-02-13 19:35 ` [bug#66603] [PATCH 00/29] Add miller Sharlatan Hellseher
2024-04-09 16:22 ` bug#66603: " Sharlatan Hellseher

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20231018093836.2056-25-w@wmeyer.eu \
    --to=w@wmeyer.eu \
    --cc=66603@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.