From 177da1bd7a1cb565a90eb82cf929aa3c562c5477 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Thu, 9 Jan 2025 20:01:14 +0000 Subject: [PATCH] gnu: go-github-com-xo-terminfo: Move to golang-xyz. * gnu/packages/golang.scm (go-github-com-xo-terminfo): Move from here ... * gnu/packages/golang-xyz.scm: ... to here. Change-Id: I8ba7b7d24737b8067b22b786c2aca73aec84d0d4 --- gnu/packages/golang-xyz.scm | 24 ++++++++++++++++++++++++ gnu/packages/golang.scm | 24 ------------------------ 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index a1ca47de00..02bb123077 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -14024,6 +14024,30 @@ similar string with weeks or days too.") "This package provides a simple ASCII tree composing tool.") (license license:expat))) +(define-public go-github-com-xo-terminfo + (package + (name "go-github-com-xo-terminfo") + (version "0.0.0-20220910002029-abceb7e1c41e") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xo/terminfo") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0n3b37z76rz3l74mhrvviz66xa8dqwpvc2gb6cyzql5smbcs9y3a")))) + (build-system go-build-system) + (arguments + (list #:import-path "github.com/xo/terminfo")) + (native-inputs + (list go-golang-org-x-exp)) + (home-page "https://github.com/xo/terminfo") + (synopsis "Read the terminfo database in Go") + (description + "The terminfo package implements terminfo database reading for Go.") + (license license:expat))) + (define-public go-github-com-xrash-smetrics (package (name "go-github-com-xrash-smetrics") diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 07575277b4..eaf868e38c 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -2621,30 +2621,6 @@ encoding in Go.") over strings.") (license license:expat))) -(define-public go-github-com-xo-terminfo - (package - (name "go-github-com-xo-terminfo") - (version "0.0.0-20220910002029-abceb7e1c41e") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/xo/terminfo") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0n3b37z76rz3l74mhrvviz66xa8dqwpvc2gb6cyzql5smbcs9y3a")))) - (build-system go-build-system) - (arguments - (list #:import-path "github.com/xo/terminfo")) - (native-inputs - (list go-golang-org-x-exp)) - (home-page "https://github.com/xo/terminfo") - (synopsis "Read the terminfo database in Go") - (description - "The terminfo package implements terminfo database reading for Go.") - (license license:expat))) - (define-public go-github-com-lunixbochs-vtclean (package (name "go-github-com-lunixbochs-vtclean")