From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:53994) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iDVbq-000840-Qx for guix-patches@gnu.org; Thu, 26 Sep 2019 11:23:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iDVbp-0006ZK-K3 for guix-patches@gnu.org; Thu, 26 Sep 2019 11:23:10 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:35543) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iDVbp-0006ZE-Hf for guix-patches@gnu.org; Thu, 26 Sep 2019 11:23:09 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iDVbp-0004Sw-CY for guix-patches@gnu.org; Thu, 26 Sep 2019 11:23:09 -0400 Subject: [bug#37444] [PATCH v3 16/23] added go package go-github-com-miolini-datacounter Resent-Message-ID: From: Martin Becze Date: Thu, 26 Sep 2019 11:21:11 -0400 Message-Id: <20190926152118.8073-16-mjbecze@riseup.net> In-Reply-To: <20190926152118.8073-1-mjbecze@riseup.net> References: <87blv7pfdi.fsf@gnu.org> <20190926152118.8073-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 | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 487a963ff0..bb00230b60 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -4113,3 +4113,27 @@ quoting, commenting, and escaping.") (description "Implements Base36 encoding and decoding, which is useful to represent large integers in a case-insensitive alphanumeric way.") (license license:expat)))) + +(define-public go-github-com-miolini-datacounter + (let ((url "https://github.com/miolini/datacounter") + (commit "aa48df3a02c1fbcd3040271f631887991c3071fb")) + (package + (name "go-github-com-miolini-datacounter") + (version (git-version "0.0.0" "0" commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url url) + (commit commit))) + (sha256 + (base32 + "12ldh5jhafjhh3jvh979mldwygkkcnm97axs7dhlai6gqwlhls87")) + (file-name (git-file-name name version)))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/miolini/datacounter")) + (home-page url) + (synopsis "Golang counters for readers/writers") + (description "Golang counters for readers/writers") + (license license:expat)))) -- 2.23.0