mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-14 19:10:49 +02:00
gnu: go-github-com-burntsushi-toml: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-burntsushi-toml): Move from here ... * gnu/packages/golang-xyz.scm: ... to here. * gnu/packages/golang-check.scm: Add (gnu packages golang-xyz) module. * gnu/packages/golang.scm: As above. * gnu/packages/shellutils.scm: As above. Change-Id: If8a645431a1fb17159681daae70db49fd21b37c1
This commit is contained in:
parent
b5bbfef22a
commit
f9ead8f7a8
4 changed files with 28 additions and 24 deletions
|
@ -42,7 +42,8 @@
|
||||||
#:use-module (guix git-download)
|
#:use-module (guix git-download)
|
||||||
#: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))
|
||||||
|
|
||||||
;;; Commentary:
|
;;; Commentary:
|
||||||
;;;
|
;;;
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2017, 2018, 2019 Leo Famulari <leo@famulari.name>
|
;;; Copyright © 2017, 2018, 2019 Leo Famulari <leo@famulari.name>
|
||||||
|
;;; Copyright © 2018 Pierre-Antoine Rouby <pierre-antoine.rouby@inria.fr>
|
||||||
;;; Copyright © 2020 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2020 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; 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 Katherine Cox-Buday <cox.katherine.e@gmail.com>
|
||||||
;;; Copyright © 2023 Sharlatan Hellseher <sharlatanus@gmail.com>
|
;;; Copyright © 2023 Sharlatan Hellseher <sharlatanus@gmail.com>
|
||||||
;;; Copyright © 2023 Thomas Ieong <th.ieong@free.fr>
|
;;; Copyright © 2023 Thomas Ieong <th.ieong@free.fr>
|
||||||
;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
|
;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
|
||||||
|
@ -87,6 +89,29 @@ optimized for sparse nodes of
|
||||||
@url{http://en.wikipedia.org/wiki/Radix_tree,radix tree}.")
|
@url{http://en.wikipedia.org/wiki/Radix_tree,radix tree}.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public go-github-com-burntsushi-toml
|
||||||
|
(package
|
||||||
|
(name "go-github-com-burntsushi-toml")
|
||||||
|
(version "1.2.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/BurntSushi/toml")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1v9czq4hsyvdz7yx70y6sgq77wmrgfmn09r9cj4w85z38jqnamv7"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:import-path "github.com/BurntSushi/toml"))
|
||||||
|
(home-page "https://github.com/BurntSushi/toml")
|
||||||
|
(synopsis "Toml parser and encoder for Go")
|
||||||
|
(description
|
||||||
|
"This package is toml parser and encoder for Go. The interface is
|
||||||
|
similar to Go's standard library @code{json} and @code{xml} package.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public go-github-com-cyberdelia-go-metrics-graphite
|
(define-public go-github-com-cyberdelia-go-metrics-graphite
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-cyberdelia-go-metrics-graphite")
|
(name "go-github-com-cyberdelia-go-metrics-graphite")
|
||||||
|
|
|
@ -3808,29 +3808,6 @@ The specific case of loading packages should still be done by invoking the
|
||||||
loading algorithms.")
|
loading algorithms.")
|
||||||
(license license:bsd-3))))
|
(license license:bsd-3))))
|
||||||
|
|
||||||
(define-public go-github-com-burntsushi-toml
|
|
||||||
(package
|
|
||||||
(name "go-github-com-burntsushi-toml")
|
|
||||||
(version "1.2.1")
|
|
||||||
(source (origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/BurntSushi/toml")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"1v9czq4hsyvdz7yx70y6sgq77wmrgfmn09r9cj4w85z38jqnamv7"))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(arguments
|
|
||||||
'(#:import-path "github.com/BurntSushi/toml"))
|
|
||||||
(home-page "https://github.com/BurntSushi/toml")
|
|
||||||
(synopsis "Toml parser and encoder for Go")
|
|
||||||
(description
|
|
||||||
"This package is toml parser and encoder for Go. The interface
|
|
||||||
is similar to Go's standard library @code{json} and @code{xml} package.")
|
|
||||||
(license license:expat)))
|
|
||||||
|
|
||||||
(define-public go-github-com-hashicorp-go-uuid
|
(define-public go-github-com-hashicorp-go-uuid
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-hashicorp-go-uuid")
|
(name "go-github-com-hashicorp-go-uuid")
|
||||||
|
|
|
@ -51,6 +51,7 @@
|
||||||
#:use-module (gnu packages check)
|
#:use-module (gnu packages check)
|
||||||
#:use-module (gnu packages flex)
|
#:use-module (gnu packages flex)
|
||||||
#:use-module (gnu packages golang)
|
#:use-module (gnu packages golang)
|
||||||
|
#:use-module (gnu packages golang-xyz)
|
||||||
#:use-module (gnu packages libunistring)
|
#:use-module (gnu packages libunistring)
|
||||||
#:use-module (gnu packages ncurses)
|
#:use-module (gnu packages ncurses)
|
||||||
#:use-module (gnu packages pcre)
|
#:use-module (gnu packages pcre)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue