From a94fd53bea6d42b46d254a47ba035d1a0ebce9ef Mon Sep 17 00:00:00 2001 From: Arthur Rodrigues Date: Tue, 14 Oct 2025 01:05:59 +0000 Subject: [PATCH] gnu: Add go-github-com-grafana-regexp. * gnu/packages/golang-xyz.scm (go-github-com-grafana-regexp): New variable. Change-Id: I7e346066bb9e232d2d46bb27ec9ad49bcd1500b5 Signed-off-by: Sharlatan Hellseher --- gnu/packages/golang-xyz.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index fef0beb379f919648311c82b56298167ab080760..3420daccbc42a56fd3b8759bfe34c3ffdeee7fa9 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -9558,6 +9558,30 @@ provides a buffered io.Writer that is flushed at a timed interval.") according @@url{https://rfc-editor.org/rfc/rfc8785.html, RFC 8785}.") (license license:asl2.0))) +(define-public go-github-com-grafana-regexp + (package + (name "go-github-com-grafana-regexp") + (version "0.0.0-20240518133315-a468a5bfb3bc") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/grafana/regexp") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0vhncrr5n8f150rg0q01i7yc58b0jpcci2h7zgiwv9wr5k0yaqs2")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/grafana/regexp")) + (home-page "https://github.com/grafana/regexp") + (synopsis "Alternative implementation of Go's std @code{regexp} package") + (description + "This package provides an alternative implementation of @code{regexp}, + with some code optimisations to make it run faster.") + (license license:bsd-3))) + (define-public go-github-com-guptarohit-asciigraph (package (name "go-github-com-guptarohit-asciigraph")