guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#40086] [PATCH 03/11] gnu: Add go-github-com-golang-freetype.


From: Efraim Flashner
Subject: [bug#40086] [PATCH 03/11] gnu: Add go-github-com-golang-freetype.
Date: Mon, 16 Mar 2020 09:15:50 +0200

* gnu/packages/golang.scm (go-github-com-golang-freetype): New variable.
---
 gnu/packages/golang.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index db40973063..5de4f8f635 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -3451,3 +3451,30 @@ directories.  It is optimized for filewalking. ")
       (description "Unicode transliterator in Golang - Replaces non-ASCII
 characters with their ASCII approximations.")
       (license license:asl2.0))))
+
+(define-public go-github-com-golang-freetype
+  (let ((commit "e2365dfdc4a05e4b8299a783240d4a7d5a65d4e4")
+        (revision "1"))
+    (package
+      (name "go-github-com-golang-freetype")
+      (version (git-version "0.0.0" revision commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                       (url "https://github.com/golang/freetype";)
+                       (commit commit)))
+                (file-name (string-append "go-github-com-golang-freetype-"
+                                          version "-checkout"))
+                (sha256
+                 (base32
+                  "194w3djc6fv1rgcjqds085b9fq074panc5vw582bcb8dbfzsrqxc"))))
+      (build-system go-build-system)
+      (arguments
+       `(#:import-path "github.com/golang/freetype"))
+      (propagated-inputs
+       `(("go-golang-org-x-image" ,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+)))))
-- 
2.25.1






reply via email to

[Prev in Thread] Current Thread [Next in Thread]