From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:53840) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iDVbk-0007rr-30 for guix-patches@gnu.org; Thu, 26 Sep 2019 11:23:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iDVbi-0006SB-TQ for guix-patches@gnu.org; Thu, 26 Sep 2019 11:23:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:35521) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iDVbi-0006Rs-PG for guix-patches@gnu.org; Thu, 26 Sep 2019 11:23:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iDVbh-0004Qf-Q9 for guix-patches@gnu.org; Thu, 26 Sep 2019 11:23:01 -0400 Subject: [bug#37444] [PATCH v3 02/23] added go package go-github-com-danwakefield-fnmatch Resent-Message-ID: From: Martin Becze Date: Thu, 26 Sep 2019 11:20:57 -0400 Message-Id: <20190926152118.8073-2-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 | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 4b78c48b84..f6c3c7673e 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -3740,3 +3740,29 @@ on running processes and system utilization (CPU, memory, disks, network, sensors).") (home-page "https://github.com/shirou/gopsutil") (license license:bsd-3)))) + +(define-public go-github-com-danwakefield-fnmatch + (let ((commit "cbb64ac3d964b81592e64f957ad53df015803288") + (url "https://github.com/danwakefield/fnmatch")) + (package + (name "go-github-com-danwakefield-fnmatch") + (version (git-version "0.0.0" "0" commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url url) + (commit commit))) + (sha256 + (base32 + "0cbf511ppsa6hf59mdl7nbyn2b2n71y0bpkzbmfkdqjhanqh1lqz")) + (file-name (git-file-name name version)))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/danwakefield/fnmatch")) + (home-page url) + (synopsis "Updated clone of kballards golang fnmatch + gist (https://gist.github.com/kballard/272720)") + (description "Updated clone of kballards golang fnmatch +gist (https://gist.github.com/kballard/272720)") + (license license:bsd-2)))) -- 2.23.0