[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#40086] [PATCH 04/11] gnu: Add go-github-com-fogleman-gg.
From: |
Efraim Flashner |
Subject: |
[bug#40086] [PATCH 04/11] gnu: Add go-github-com-fogleman-gg. |
Date: |
Mon, 16 Mar 2020 09:15:51 +0200 |
* gnu/packages/golang.scm (go-github-com-fogleman-gg): New variable.
---
gnu/packages/golang.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 5de4f8f635..64e226e03a 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -3478,3 +3478,27 @@ characters with their ASCII approximations.")
(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")
+ (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
+ `(("go-github-com-golang-freetype" ,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)))
--
2.25.1
- [bug#40086] [PATCH 00/11] Expand edirect programs, Efraim Flashner, 2020/03/16
- [bug#40086] [PATCH 01/11] gnu: Add go-golang-org-x-image., Efraim Flashner, 2020/03/16
- [bug#40086] [PATCH 02/11] gnu: Add go-golang-org-rainycape-unidecode., Efraim Flashner, 2020/03/16
- [bug#40086] [PATCH 03/11] gnu: Add go-github-com-golang-freetype., Efraim Flashner, 2020/03/16
- [bug#40086] [PATCH 04/11] gnu: Add go-github-com-fogleman-gg.,
Efraim Flashner <=
- [bug#40086] [PATCH 05/11] gnu: Add go-github-com-gedex-inflector., Efraim Flashner, 2020/03/16
- [bug#40086] [PATCH 06/11] gnu: Add go-github-com-klauspost-cpuid., Efraim Flashner, 2020/03/16
- [bug#40086] [PATCH 07/11] gnu: Add go-github-com-pbnjay-memory., Efraim Flashner, 2020/03/16
- [bug#40086] [PATCH 06/11] gnu: Add go-github-com-klauspost-cpuid., Efraim Flashner, 2020/03/16
- [bug#40086] [PATCH 08/11] gnu: Add go-github-com-surge-glog., Efraim Flashner, 2020/03/16
- [bug#40086] [PATCH 09/11] gnu: Add go-github-com-surgebase-porter2., Efraim Flashner, 2020/03/16
- [bug#40086] [PATCH 11/11] gnu: edirect: Install more programs., Efraim Flashner, 2020/03/16
- [bug#40086] [PATCH 10/11] gnu: Add edirect-go-programs., Efraim Flashner, 2020/03/16
- bug#40086: [PATCH 00/11] Expand edirect programs, Efraim Flashner, 2020/03/22