mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: go-github-com-fogleman-gg: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-fogleman-gg): Move from here ... * gnu/packages/golang-xyz.scm: ... to here. Change-Id: If91963847f78a03c4d2f97236dba89e700fdb824
This commit is contained in:
parent
c5e73f1634
commit
643170d52a
2 changed files with 29 additions and 24 deletions
|
@ -3885,6 +3885,35 @@ information about the music/image/video that is Now Playing on the system.")
|
||||||
font files in your system's user and system font directories.")
|
font files in your system's user and system font directories.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
;; XXX: This project isn't maintained upstream, consider to find alternative
|
||||||
|
;; fork, see <https://github.com/fogleman/gg/issues/185> and remove the
|
||||||
|
;; package when it has no users.
|
||||||
|
(define-public go-github-com-fogleman-gg
|
||||||
|
(package
|
||||||
|
(name "go-github-com-fogleman-gg")
|
||||||
|
(version "1.3.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/fogleman/gg")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1nkldjghbqnzj2djfaxhiv35kk341xhcrj9m2dwq65v684iqkk8n"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:tests? #f ; Issue with test flags.
|
||||||
|
#:import-path "github.com/fogleman/gg"))
|
||||||
|
(propagated-inputs
|
||||||
|
(list go-github-com-golang-freetype))
|
||||||
|
(home-page "https://github.com/fogleman/gg")
|
||||||
|
(synopsis "2D rendering in Go")
|
||||||
|
(description
|
||||||
|
"@code{gg} is a library for rendering 2D graphics in pure Go.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public go-github-com-gammazero-chanqueue
|
(define-public go-github-com-gammazero-chanqueue
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-gammazero-chanqueue")
|
(name "go-github-com-gammazero-chanqueue")
|
||||||
|
|
|
@ -1862,30 +1862,6 @@ be performed.")
|
||||||
characters with their ASCII approximations.")
|
characters with their ASCII approximations.")
|
||||||
(license license:asl2.0))))
|
(license license:asl2.0))))
|
||||||
|
|
||||||
(define-public go-github-com-fogleman-gg
|
|
||||||
(package
|
|
||||||
(name "go-github-com-fogleman-gg")
|
|
||||||
(version "1.3.0")
|
|
||||||
(source (origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/fogleman/gg")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"1nkldjghbqnzj2djfaxhiv35kk341xhcrj9m2dwq65v684iqkk8n"))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(arguments
|
|
||||||
`(#:tests? #f ; Issue with test flags.
|
|
||||||
#:import-path "github.com/fogleman/gg"))
|
|
||||||
(propagated-inputs
|
|
||||||
(list go-github-com-golang-freetype))
|
|
||||||
(home-page "https://github.com/fogleman/gg")
|
|
||||||
(synopsis "2D rendering in Go")
|
|
||||||
(description "@code{gg} is a library for rendering 2D graphics in pure Go.")
|
|
||||||
(license license:expat)))
|
|
||||||
|
|
||||||
(define-public go-github-com-akosmarton-papipes
|
(define-public go-github-com-akosmarton-papipes
|
||||||
(let ((commit "3c63b4919c769c9c2b2d07e69a98abb0eb47fe64")
|
(let ((commit "3c63b4919c769c9c2b2d07e69a98abb0eb47fe64")
|
||||||
(revision "0"))
|
(revision "0"))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue