From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:42267) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iFPrO-0004Np-SF for guix-patches@gnu.org; Tue, 01 Oct 2019 17:39:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iFPrN-0001fn-7b for guix-patches@gnu.org; Tue, 01 Oct 2019 17:39:06 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:54493) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iFPrN-0001fO-1a for guix-patches@gnu.org; Tue, 01 Oct 2019 17:39:05 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iFPrM-0007GZ-TZ for guix-patches@gnu.org; Tue, 01 Oct 2019 17:39:04 -0400 Subject: [bug#37444] [PATCH v4 02/24] added go package go-github-com-mattn-go-pointer Resent-Message-ID: From: Martin Becze Date: Tue, 1 Oct 2019 17:37:04 -0400 Message-Id: <20191001213726.21676-2-mjbecze@riseup.net> In-Reply-To: <20191001213726.21676-1-mjbecze@riseup.net> References: <20191001213726.21676-1-mjbecze@riseup.net> 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: 37444@debbugs.gnu.org Cc: Martin Becze * gnu/packages/golang.scm (go-github-com-mattn-go-pointer): added pacakge --- gnu/packages/golang.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index bf1a45f135..4b78c48b84 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -2074,6 +2074,31 @@ terminal.") makes it possible to handle ANSI color escapes on Windows.") (license license:expat)))) +(define-public go-github-com-mattn-go-pointer + (let ((commit "a0a44394634f41e4992b173b24f14fecd3318a67") + (url "https://github.com/mattn/go-pointer")) + (package + (name "go-github-com-mattn-go-pointer") + (version (git-version "0.0.0" "0" commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url url) + (commit commit))) + (sha256 + (base32 + "09w7hcyc0zz2g23vld6jbcmq4ar27xakp1ldjvh549i5izf2anhz")) + (file-name (git-file-name name version)))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/mattn/go-pointer")) + (home-page url) + (synopsis "Utility for cgo") + (description "Utility for cgo") + (license license:expat)))) + + (define-public go-github-com-mgutz-ansi (let ((commit "9520e82c474b0a04dd04f8a40959027271bab992") (revision "0")) -- 2.23.0