mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: go-github-com-mattn-go-runewidth: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-mattn-go-runewidth): Move from here ... * gnu/packages/golang-xyz.scm: ... to here. * gnu/packages/check.scm: Add (gnu packages golang-xyz) module. * gnu/packages/disk.scm: Likewise. * gnu/packages/messaging.scm: Likewise. * gnu/packages/time.scm: Likewise. * gnu/packages/weather.scm: Likewise. Change-Id: I80f8b4c31c0fd8fee7c190a7740513ee139646d4
This commit is contained in:
parent
c254415ad1
commit
5abebf71e9
7 changed files with 34 additions and 26 deletions
|
@ -81,6 +81,7 @@
|
||||||
#:use-module (gnu packages gnome)
|
#:use-module (gnu packages gnome)
|
||||||
#:use-module (gnu packages golang)
|
#:use-module (gnu packages golang)
|
||||||
#:use-module (gnu packages golang-build)
|
#:use-module (gnu packages golang-build)
|
||||||
|
#:use-module (gnu packages golang-xyz)
|
||||||
#:use-module (gnu packages gtk)
|
#:use-module (gnu packages gtk)
|
||||||
#:use-module (gnu packages guile)
|
#:use-module (gnu packages guile)
|
||||||
#:use-module (gnu packages guile-xyz)
|
#:use-module (gnu packages guile-xyz)
|
||||||
|
|
|
@ -70,6 +70,7 @@
|
||||||
#:use-module (gnu packages gnupg)
|
#:use-module (gnu packages gnupg)
|
||||||
#:use-module (gnu packages golang)
|
#:use-module (gnu packages golang)
|
||||||
#:use-module (gnu packages golang-build)
|
#:use-module (gnu packages golang-build)
|
||||||
|
#:use-module (gnu packages golang-xyz)
|
||||||
#:use-module (gnu packages graphics)
|
#:use-module (gnu packages graphics)
|
||||||
#:use-module (gnu packages gtk)
|
#:use-module (gnu packages gtk)
|
||||||
#:use-module (gnu packages guile)
|
#:use-module (gnu packages guile)
|
||||||
|
|
|
@ -14,12 +14,14 @@
|
||||||
;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
|
;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
|
||||||
;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name>
|
;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name>
|
||||||
;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev>
|
;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev>
|
||||||
|
;;; Copyright © 2021 raingloom <raingloom@riseup.net>
|
||||||
;;; Copyright © 2021, 2023, 2024 Sharlatan Hellseher <sharlatanus@gmail.com>
|
;;; Copyright © 2021, 2023, 2024 Sharlatan Hellseher <sharlatanus@gmail.com>
|
||||||
;;; Copyright © 2022 Dominic Martinez <dom@dominicm.dev>
|
;;; Copyright © 2022 Dominic Martinez <dom@dominicm.dev>
|
||||||
;;; Copyright © 2023 Benjamin <benjamin@uvy.fr>
|
;;; Copyright © 2023 Benjamin <benjamin@uvy.fr>
|
||||||
;;; Copyright © 2023 Fries <fries1234@protonmail.com>
|
;;; Copyright © 2023 Fries <fries1234@protonmail.com>
|
||||||
;;; Copyright © 2023 Hilton Chain <hako@ultrarare.space>
|
;;; Copyright © 2023 Hilton Chain <hako@ultrarare.space>
|
||||||
;;; Copyright © 2023 Katherine Cox-Buday <cox.katherine.e@gmail.com>
|
;;; Copyright © 2023 Katherine Cox-Buday <cox.katherine.e@gmail.com>
|
||||||
|
;;; Copyright © 2023 Nguyễn Gia Phong <mcsinyx@disroot.org>
|
||||||
;;; Copyright © 2023 Nicolas Graves <ngraves@ngraves.fr>
|
;;; Copyright © 2023 Nicolas Graves <ngraves@ngraves.fr>
|
||||||
;;; Copyright © 2023 Sergey Trofimov <sarg@sarg.org.ru>
|
;;; Copyright © 2023 Sergey Trofimov <sarg@sarg.org.ru>
|
||||||
;;; Copyright © 2023 Thomas Ieong <th.ieong@free.fr>
|
;;; Copyright © 2023 Thomas Ieong <th.ieong@free.fr>
|
||||||
|
@ -1785,6 +1787,32 @@ implementing features like:
|
||||||
(description "This package provides an idiomatic Go retry module.")
|
(description "This package provides an idiomatic Go retry module.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public go-github-com-mattn-go-runewidth
|
||||||
|
(package
|
||||||
|
(name "go-github-com-mattn-go-runewidth")
|
||||||
|
(version "0.0.14")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/mattn/go-runewidth")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1iaqw5pd7f4f2xz37540kp0828p2820g4vxx3hz089hwl331sx1v"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:import-path "github.com/mattn/go-runewidth"))
|
||||||
|
(propagated-inputs
|
||||||
|
(list go-github-com-rivo-uniseg))
|
||||||
|
(home-page "https://github.com/mattn/go-runewidth")
|
||||||
|
(synopsis "Rune width implementation for Go")
|
||||||
|
(description
|
||||||
|
"This package provides functions to get the fixed width of a character or
|
||||||
|
string.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public go-github-com-mattn-go-shellwords
|
(define-public go-github-com-mattn-go-shellwords
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-mattn-go-shellwords")
|
(name "go-github-com-mattn-go-shellwords")
|
||||||
|
|
|
@ -9186,31 +9186,6 @@ parser.")
|
||||||
@url{https://unicode.org/reports/tr29/, Unicode Standard Annex #29}.")
|
@url{https://unicode.org/reports/tr29/, Unicode Standard Annex #29}.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public go-github-com-mattn-go-runewidth
|
|
||||||
(package
|
|
||||||
(name "go-github-com-mattn-go-runewidth")
|
|
||||||
(version "0.0.14")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/mattn/go-runewidth")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32 "1iaqw5pd7f4f2xz37540kp0828p2820g4vxx3hz089hwl331sx1v"))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(arguments '(#:import-path "github.com/mattn/go-runewidth"))
|
|
||||||
(propagated-inputs
|
|
||||||
(list go-github-com-rivo-uniseg))
|
|
||||||
(home-page "https://github.com/mattn/go-runewidth")
|
|
||||||
(synopsis "Rune width implementation for Go")
|
|
||||||
(description
|
|
||||||
"This package provides functions to get the fixed width of a character or
|
|
||||||
string.")
|
|
||||||
(license license:expat)))
|
|
||||||
|
|
||||||
|
|
||||||
(define-public go-github-com-charmbracelet-bubbletea
|
(define-public go-github-com-charmbracelet-bubbletea
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-charmbracelet-bubbletea")
|
(name "go-github-com-charmbracelet-bubbletea")
|
||||||
|
|
|
@ -88,6 +88,7 @@
|
||||||
#:use-module (gnu packages gnupg)
|
#:use-module (gnu packages gnupg)
|
||||||
#:use-module (gnu packages golang)
|
#:use-module (gnu packages golang)
|
||||||
#:use-module (gnu packages golang-build)
|
#:use-module (gnu packages golang-build)
|
||||||
|
#:use-module (gnu packages golang-xyz)
|
||||||
#:use-module (gnu packages gperf)
|
#:use-module (gnu packages gperf)
|
||||||
#:use-module (gnu packages graphviz)
|
#:use-module (gnu packages graphviz)
|
||||||
#:use-module (gnu packages gstreamer)
|
#:use-module (gnu packages gstreamer)
|
||||||
|
|
|
@ -46,6 +46,7 @@
|
||||||
#:use-module (gnu packages compression)
|
#:use-module (gnu packages compression)
|
||||||
#:use-module (gnu packages geo)
|
#:use-module (gnu packages geo)
|
||||||
#:use-module (gnu packages golang)
|
#:use-module (gnu packages golang)
|
||||||
|
#:use-module (gnu packages golang-xyz)
|
||||||
#:use-module (gnu packages libffi)
|
#:use-module (gnu packages libffi)
|
||||||
#:use-module (gnu packages perl)
|
#:use-module (gnu packages perl)
|
||||||
#:use-module (gnu packages python)
|
#:use-module (gnu packages python)
|
||||||
|
|
|
@ -23,7 +23,8 @@
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
#:use-module (gnu packages golang)
|
#:use-module (gnu packages golang)
|
||||||
#:use-module (gnu packages golang-build))
|
#:use-module (gnu packages golang-build)
|
||||||
|
#:use-module (gnu packages golang-xyz))
|
||||||
|
|
||||||
(define-public wego
|
(define-public wego
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue