From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:39922) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jDk1g-0006fY-0v for guix-patches@gnu.org; Mon, 16 Mar 2020 03:19:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jDk1e-0008Po-MZ for guix-patches@gnu.org; Mon, 16 Mar 2020 03:19:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:58242) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jDk1e-0008Ml-Fw for guix-patches@gnu.org; Mon, 16 Mar 2020 03:19:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jDk1e-0001JT-BK for guix-patches@gnu.org; Mon, 16 Mar 2020 03:19:02 -0400 Subject: [bug#40086] [PATCH 03/11] gnu: Add go-github-com-golang-freetype. References: <20200316070412.12364-1-efraim@flashner.co.il> In-Reply-To: <20200316070412.12364-1-efraim@flashner.co.il> Resent-Message-ID: From: Efraim Flashner Date: Mon, 16 Mar 2020 09:15:50 +0200 Message-Id: <20200316071559.13930-3-efraim@flashner.co.il> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 40086@debbugs.gnu.org Cc: Efraim Flashner * 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