mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-15 11:30:44 +02:00
gnu: go-github-com-dustin-go-humanize: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-dustin-go-humanize): Move from here ... * gnu/packages/golang-xyz.scm: ... to here. * gnu/packages/uucp.scm: Add golang-xyz module. Change-Id: Ic0913615d559ec255bf98abfab99383edf3c9a84
This commit is contained in:
parent
37ef7683de
commit
8ee3669af4
3 changed files with 26 additions and 24 deletions
|
@ -14,6 +14,7 @@
|
||||||
;;; Copyright © 2020 Joseph LaFreniere <joseph@lafreniere.xyz>
|
;;; Copyright © 2020 Joseph LaFreniere <joseph@lafreniere.xyz>
|
||||||
;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
|
;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
|
||||||
;;; Copyright © 2020, 2021 raingloom <raingloom@riseup.net>
|
;;; Copyright © 2020, 2021 raingloom <raingloom@riseup.net>
|
||||||
|
;;; Copyright © 2021 Arun Isaac <arunisaac@systemreboot.net>
|
||||||
;;; Copyright © 2021 Collin J. Doering <collin@rekahsoft.ca>
|
;;; Copyright © 2021 Collin J. Doering <collin@rekahsoft.ca>
|
||||||
;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
|
;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
|
||||||
;;; Copyright © 2021 Guix Together <jgart@dismail.de>
|
;;; Copyright © 2021 Guix Together <jgart@dismail.de>
|
||||||
|
@ -2399,6 +2400,30 @@ Implements string conversion functionality for unit prefixes.
|
||||||
scanner API made public.")
|
scanner API made public.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public go-github-com-dustin-go-humanize
|
||||||
|
(package
|
||||||
|
(name "go-github-com-dustin-go-humanize")
|
||||||
|
(version "1.0.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/dustin/go-humanize")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1iyhd90pnmxh64nhsh6k02c1b1glpmhh4whga9jgb9g0i5hz3sya"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:import-path "github.com/dustin/go-humanize"))
|
||||||
|
(home-page "https://github.com/dustin/go-humanize")
|
||||||
|
(synopsis "Humane unit formatter")
|
||||||
|
(description
|
||||||
|
"@code{go-humanize} provides formatters for units to human friendly
|
||||||
|
sizes. It converts boring ugly numbers to human-friendly strings and back.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public go-github-com-edsrzf-mmap-go
|
(define-public go-github-com-edsrzf-mmap-go
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-edsrzf-mmap-go")
|
(name "go-github-com-edsrzf-mmap-go")
|
||||||
|
|
|
@ -6905,30 +6905,6 @@ the External Data Representation (XDR) standard protocol as specified in RFC
|
||||||
4506 (obsoletes RFC 1832 and RFC 1014) in pure Go.")
|
4506 (obsoletes RFC 1832 and RFC 1014) in pure Go.")
|
||||||
(license license:isc)))
|
(license license:isc)))
|
||||||
|
|
||||||
(define-public go-github-com-dustin-go-humanize
|
|
||||||
(package
|
|
||||||
(name "go-github-com-dustin-go-humanize")
|
|
||||||
(version "1.0.1")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/dustin/go-humanize")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"1iyhd90pnmxh64nhsh6k02c1b1glpmhh4whga9jgb9g0i5hz3sya"))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(arguments
|
|
||||||
'(#:import-path "github.com/dustin/go-humanize"))
|
|
||||||
(home-page "https://github.com/dustin/go-humanize")
|
|
||||||
(synopsis "Humane unit formatter")
|
|
||||||
(description "@code{go-humanize} provides formatters for units to human
|
|
||||||
friendly sizes. It converts boring ugly numbers to human-friendly strings and
|
|
||||||
back.")
|
|
||||||
(license license:expat)))
|
|
||||||
|
|
||||||
(define-public go-gopkg-in-djherbis-times-v1
|
(define-public go-gopkg-in-djherbis-times-v1
|
||||||
(package
|
(package
|
||||||
(name "go-gopkg-in-djherbis-times-v1")
|
(name "go-gopkg-in-djherbis-times-v1")
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
#:use-module (gnu packages golang-compression)
|
#:use-module (gnu packages golang-compression)
|
||||||
#:use-module (gnu packages golang-crypto)
|
#:use-module (gnu packages golang-crypto)
|
||||||
#:use-module (gnu packages golang-web)
|
#:use-module (gnu packages golang-web)
|
||||||
|
#:use-module (gnu packages golang-xyz)
|
||||||
#:use-module (gnu packages texinfo)
|
#:use-module (gnu packages texinfo)
|
||||||
#:use-module (guix licenses)
|
#:use-module (guix licenses)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue