mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: go-golang-org-x-image: Move to golang-build.
* gnu/packages/golang.scm (go-golang-org-x-image): Move from here ... * gnu/packages/golang-build.scm: ... to here. * gnu/packages/game.scm: Add (gnu packages golang-build) module. Change-Id: Icd0b303d8f7544f6eae10ac30d7bd01779abaede
This commit is contained in:
parent
92df6b5c70
commit
b8e8cb296f
3 changed files with 32 additions and 30 deletions
|
@ -150,6 +150,7 @@
|
||||||
#:use-module (gnu packages gnupg)
|
#:use-module (gnu packages gnupg)
|
||||||
#:use-module (gnu packages gnuzilla)
|
#:use-module (gnu packages gnuzilla)
|
||||||
#:use-module (gnu packages golang)
|
#:use-module (gnu packages golang)
|
||||||
|
#:use-module (gnu packages golang-build)
|
||||||
#:use-module (gnu packages gperf)
|
#:use-module (gnu packages gperf)
|
||||||
#:use-module (gnu packages graphics)
|
#:use-module (gnu packages graphics)
|
||||||
#:use-module (gnu packages graphviz)
|
#:use-module (gnu packages graphviz)
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2019 Brian Leung <bkleung89@gmail.com>
|
;;; Copyright © 2019 Brian Leung <bkleung89@gmail.com>
|
||||||
;;; Copyright © 2020 Danny Milosavljevic <dannym@scratchpost.org>
|
;;; Copyright © 2020 Danny Milosavljevic <dannym@scratchpost.org>
|
||||||
|
;;; Copyright © 2020 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; 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>
|
||||||
;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
|
;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
|
||||||
|
@ -99,6 +100,36 @@
|
||||||
@code{old} directory) packages.")
|
@code{old} directory) packages.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public go-golang-org-x-image
|
||||||
|
(let ((commit "58c23975cae11f062d4b3b0c143fe248faac195d")
|
||||||
|
(revision "1"))
|
||||||
|
(package
|
||||||
|
(name "go-golang-org-x-image")
|
||||||
|
(version (git-version "0.0.0" revision commit))
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://go.googlesource.com/image")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (string-append "go.googlesource.com-image-"
|
||||||
|
version "-checkout"))
|
||||||
|
(sha256
|
||||||
|
(base32 "0i2p2girc1sfcic6xs6vrq0fp3szfx057xppksb67kliywjjrm5x"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:import-path "golang.org/x/image"
|
||||||
|
;; Source-only package
|
||||||
|
#:tests? #f
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(delete 'build))))
|
||||||
|
(home-page "https://go.googlesource.com/image")
|
||||||
|
(synopsis "Supplemental Go image libraries")
|
||||||
|
(description "This package provides supplemental Go libraries for image
|
||||||
|
processing.")
|
||||||
|
(license license:bsd-3))))
|
||||||
|
|
||||||
(define-public go-golang-org-x-mod
|
(define-public go-golang-org-x-mod
|
||||||
(let ((commit "7c05a442b7c1d1a107879b4a090bb5a38d3774a1")
|
(let ((commit "7c05a442b7c1d1a107879b4a090bb5a38d3774a1")
|
||||||
(revision "0"))
|
(revision "0"))
|
||||||
|
|
|
@ -3488,36 +3488,6 @@ developed by the Go team. It provides IDE features to any LSP-compatible
|
||||||
editor.")
|
editor.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public go-golang-org-x-image
|
|
||||||
(let ((commit "58c23975cae11f062d4b3b0c143fe248faac195d")
|
|
||||||
(revision "1"))
|
|
||||||
(package
|
|
||||||
(name "go-golang-org-x-image")
|
|
||||||
(version (git-version "0.0.0" revision commit))
|
|
||||||
(source (origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://go.googlesource.com/image")
|
|
||||||
(commit commit)))
|
|
||||||
(file-name (string-append "go.googlesource.com-image-"
|
|
||||||
version "-checkout"))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"0i2p2girc1sfcic6xs6vrq0fp3szfx057xppksb67kliywjjrm5x"))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(arguments
|
|
||||||
`(#:import-path "golang.org/x/image"
|
|
||||||
; Source-only package
|
|
||||||
#:tests? #f
|
|
||||||
#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
(delete 'build))))
|
|
||||||
(home-page "https://go.googlesource.com/image")
|
|
||||||
(synopsis "Supplemental Go image libraries")
|
|
||||||
(description "This package provides supplemental Go libraries for image
|
|
||||||
processing.")
|
|
||||||
(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"))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue