mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: go-golang-org-x-text: Move to golang-build.
* gnu/packages/golang.scm (go-golang-org-x-text): Move from here ... * gnu/packages/golang-build.scm: ... to here. * gnu/packages/admin.scm: Add (gnu packages golang-build) module. * gnu/packages/bioinformatics.scm: As above. * gnu/packages/mail.scm: As above. Change-Id: Ifd15b35b460ae30c5c1d677551e95842b322b246
This commit is contained in:
parent
82a9ceebe8
commit
de36ec1480
5 changed files with 32 additions and 28 deletions
|
@ -130,6 +130,7 @@ (define-module (gnu packages admin)
|
||||||
#:use-module (gnu packages gnome)
|
#:use-module (gnu packages gnome)
|
||||||
#: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 groff)
|
#:use-module (gnu packages groff)
|
||||||
#:use-module (gnu packages gtk)
|
#:use-module (gnu packages gtk)
|
||||||
#:use-module (gnu packages guile)
|
#:use-module (gnu packages guile)
|
||||||
|
|
|
@ -93,6 +93,7 @@ (define-module (gnu packages bioinformatics)
|
||||||
#:use-module (gnu packages gcc)
|
#:use-module (gnu packages gcc)
|
||||||
#:use-module (gnu packages gd)
|
#:use-module (gnu packages gd)
|
||||||
#:use-module (gnu packages golang)
|
#:use-module (gnu packages golang)
|
||||||
|
#:use-module (gnu packages golang-build)
|
||||||
#:use-module (gnu packages golang-check)
|
#:use-module (gnu packages golang-check)
|
||||||
#:use-module (gnu packages glib)
|
#:use-module (gnu packages glib)
|
||||||
#:use-module (gnu packages graph)
|
#:use-module (gnu packages graph)
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
|
;;; Copyright © 2019 Brian Leung <bkleung89@gmail.com>
|
||||||
;;; Copyright © 2020 Danny Milosavljevic <dannym@scratchpost.org>
|
;;; Copyright © 2020 Danny Milosavljevic <dannym@scratchpost.org>
|
||||||
;;; Copyright © 2020 HiPhish <hiphish@posteo.de>
|
;;; Copyright © 2020 HiPhish <hiphish@posteo.de>
|
||||||
;;; Copyright © 2020 Leo Famulari <leo@famulari.name>
|
;;; Copyright © 2020 Leo Famulari <leo@famulari.name>
|
||||||
|
@ -292,6 +293,34 @@ (define-public go-golang-org-x-term
|
||||||
terminals, as commonly found on Unix systems.")
|
terminals, as commonly found on Unix systems.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public go-golang-org-x-text
|
||||||
|
(package
|
||||||
|
(name "go-golang-org-x-text")
|
||||||
|
(version "0.3.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://go.googlesource.com/text")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (string-append "go.googlesource.com-text-"
|
||||||
|
version "-checkout"))
|
||||||
|
(sha256
|
||||||
|
(base32 "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:import-path "golang.org/x/text"
|
||||||
|
;; Source-only package
|
||||||
|
#:tests? #f
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(delete 'build))))
|
||||||
|
(home-page "https://go.googlesource.com/text")
|
||||||
|
(synopsis "Supplemental Go text processing libraries")
|
||||||
|
(description "This package provides supplemental Go libraries for text
|
||||||
|
processing.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public go-golang-org-x-time
|
(define-public go-golang-org-x-time
|
||||||
(let ((commit "9d24e82272b4f38b78bc8cff74fa936d31ccd8ef")
|
(let ((commit "9d24e82272b4f38b78bc8cff74fa936d31ccd8ef")
|
||||||
(revision "2"))
|
(revision "2"))
|
||||||
|
|
|
@ -3559,34 +3559,6 @@ (define-public go-golang-org-x-image
|
||||||
processing.")
|
processing.")
|
||||||
(license license:bsd-3))))
|
(license license:bsd-3))))
|
||||||
|
|
||||||
(define-public go-golang-org-x-text
|
|
||||||
(package
|
|
||||||
(name "go-golang-org-x-text")
|
|
||||||
(version "0.3.2")
|
|
||||||
(source (origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://go.googlesource.com/text")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (string-append "go.googlesource.com-text-"
|
|
||||||
version "-checkout"))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh"))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(arguments
|
|
||||||
`(#:import-path "golang.org/x/text"
|
|
||||||
; Source-only package
|
|
||||||
#:tests? #f
|
|
||||||
#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
(delete 'build))))
|
|
||||||
(synopsis "Supplemental Go text processing libraries")
|
|
||||||
(description "This package provides supplemental Go libraries for text
|
|
||||||
processing.")
|
|
||||||
(home-page "https://go.googlesource.com/text")
|
|
||||||
(license license:bsd-3)))
|
|
||||||
|
|
||||||
(define-public go-golang-org-x-oauth2
|
(define-public go-golang-org-x-oauth2
|
||||||
(let ((commit "0f29369cfe4552d0e4bcddc57cc75f4d7e672a33")
|
(let ((commit "0f29369cfe4552d0e4bcddc57cc75f4d7e672a33")
|
||||||
(revision "1"))
|
(revision "1"))
|
||||||
|
|
|
@ -108,6 +108,7 @@ (define-module (gnu packages mail)
|
||||||
#:use-module (gnu packages gnome)
|
#:use-module (gnu packages gnome)
|
||||||
#: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-check)
|
#:use-module (gnu packages golang-check)
|
||||||
#:use-module (gnu packages golang-crypto)
|
#:use-module (gnu packages golang-crypto)
|
||||||
#:use-module (gnu packages golang-web)
|
#:use-module (gnu packages golang-web)
|
||||||
|
|
Loading…
Reference in a new issue