summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-01-11 13:38:28 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-01-21 23:47:57 +0000
commit1f77ca8624b4567c8242998d9468299cd1d8ff1e (patch)
treeb7cc41dc9beb001fe2ef06300f80e8d24468fa76
parent719fa62297485e4d133b3d227ceb4a8b556345f9 (diff)
gnu: go-github-com-golang-freetype: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-golang-freetype): Move from here ... * gnu/packages/golang-xyz.scm: ... to here. Change-Id: I5e455f90937905ba5ec2078dccd7037da78ed372
-rw-r--r--gnu/packages/golang-xyz.scm25
-rw-r--r--gnu/packages/golang.scm24
2 files changed, 25 insertions, 24 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index f9ff24c5b6..58a11e854c 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -6013,6 +6013,31 @@ execution.")
"The chardet package ports character set detection from ICU to Go.")
(license license:expat)))
+(define-public go-github-com-golang-freetype
+ (package
+ (name "go-github-com-golang-freetype")
+ (version "0.0.0-20170609003504-e2365dfdc4a0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/golang/freetype")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "194w3djc6fv1rgcjqds085b9fq074panc5vw582bcb8dbfzsrqxc"))))
+ (build-system go-build-system)
+ (arguments
+ (list #:import-path "github.com/golang/freetype"))
+ (propagated-inputs
+ (list go-golang-org-x-image))
+ (home-page "https://github.com/golang/freetype")
+ (synopsis "Freetype font rasterizer in the Go programming language")
+ (description
+ "The Freetype font rasterizer in the Go programming language.")
+ (license (list license:freetype
+ license:gpl2+))))
+
(define-public go-github-com-golangplus-bytes
(package
(name "go-github-com-golangplus-bytes")
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index d899be6b3a..4b201d5c9d 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -2303,30 +2303,6 @@ encoding in Go.")
characters with their ASCII approximations.")
(license license:asl2.0))))
-(define-public go-github-com-golang-freetype
- (package
- (name "go-github-com-golang-freetype")
- (version "0.0.0-20170609003504-e2365dfdc4a0")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/golang/freetype")
- (commit (go-version->git-ref version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "194w3djc6fv1rgcjqds085b9fq074panc5vw582bcb8dbfzsrqxc"))))
- (build-system go-build-system)
- (arguments
- `(#:import-path "github.com/golang/freetype"))
- (propagated-inputs
- (list go-golang-org-x-image))
- (home-page "https://github.com/golang/freetype")
- (synopsis "Freetype font rasterizer in the Go programming language")
- (description "The Freetype font rasterizer in the Go programming language.")
- (license (list license:freetype
- license:gpl2+))))
-
(define-public go-github-com-fogleman-gg
(package
(name "go-github-com-fogleman-gg")