summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorPatrick Norton <patrick.147.norton@gmail.com>2026-01-04 15:30:18 -0500
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-05-28 14:49:38 +0100
commit245a5b7b3d384491f6de13232f75ee1d8fd47461 (patch)
treefd8a2fc8fe82d56ad8205298cfa82eaacb0606b2 /gnu
parent536cde59251c10cce2727466ffa0a22e23eb1e74 (diff)
gnu: Add go-github-com-tenntenn-text-transform.
* gnu/packages/golang-check.scm (go-github-com-tenntenn-text-transform): New variable. Relates-to: guix/guix!5417 Change-Id: I2525771a8adb13d8f5b05e2b3e93cecca27d1a48 Reviewed-by: Johannes Christ <jc@jchri.st> Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/golang-check.scm25
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm
index 3c60dbc9bcc..9b32a456e74 100644
--- a/gnu/packages/golang-check.scm
+++ b/gnu/packages/golang-check.scm
@@ -3421,6 +3421,31 @@ such as readers and writers that fail after N consecutive reads/writes.")
3421 (description "This package provides utilities for Go modules.") 3421 (description "This package provides utilities for Go modules.")
3422 (license license:expat))) 3422 (license license:expat)))
3423 3423
3424(define-public go-github-com-tenntenn-text-transform
3425 (package
3426 (name "go-github-com-tenntenn-text-transform")
3427 (version "0.0.0-20250402111347-ba836492e880")
3428 (source
3429 (origin
3430 (method git-fetch)
3431 (uri (git-reference
3432 (url "https://github.com/tenntenn/text")
3433 (commit (go-version->git-ref version))))
3434 (file-name (git-file-name name version))
3435 (sha256
3436 (base32 "19f302js8pxyqnl189992zp6pl169b4gpgn6wywpdir77vm56pih"))))
3437 (build-system go-build-system)
3438 (arguments
3439 (list
3440 #:import-path "github.com/tenntenn/text/transform"
3441 #:unpack-path "github.com/tenntenn/text"))
3442 (propagated-inputs
3443 (list go-golang-org-x-text))
3444 (home-page "https://github.com/tenntenn/text")
3445 (synopsis "Text transformation utilities")
3446 (description "This package provides text transformation utilities in Go.")
3447 (license license:expat)))
3448
3424(define-public go-github-com-tj-assert 3449(define-public go-github-com-tj-assert
3425 (package 3450 (package
3426 (name "go-github-com-tj-assert") 3451 (name "go-github-com-tj-assert")