From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:53967) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iDVbp-000821-R6 for guix-patches@gnu.org; Thu, 26 Sep 2019 11:23:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iDVbo-0006YY-Lc for guix-patches@gnu.org; Thu, 26 Sep 2019 11:23:09 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:35541) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iDVbo-0006YR-JP for guix-patches@gnu.org; Thu, 26 Sep 2019 11:23:08 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iDVbo-0004Si-EC for guix-patches@gnu.org; Thu, 26 Sep 2019 11:23:08 -0400 Subject: [bug#37444] [PATCH v3 13/23] added go package go-github-com-google-shlex Resent-Message-ID: From: Martin Becze Date: Thu, 26 Sep 2019 11:21:08 -0400 Message-Id: <20190926152118.8073-13-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 | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 9245965613..6c178a2102 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -4037,3 +4037,28 @@ gist (https://gist.github.com/kballard/272720)") (synopsis "Package ini provides INI file read and write functionality in Go") (description "Package ini provides INI file read and write functionality in Go.") (license license:asl2.0)))) + +(define-public go-github-com-google-shlex + (let ((commit "c34317bd91bf98fab745d77b03933cf8769299fe") + (url "https://github.com/google/shlex")) + (package + (name "go-github-com-google-shlex") + (version (git-version "0.0.0" "0" commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url url) + (commit commit))) + (sha256 + (base32 + "00qivza4hkllfkar2vpqmyxybi0fwqipgijv61dgapq4xddxdq0r")) + (file-name (git-file-name name version)))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/google/shlex")) + (home-page url) + (synopsis "A simple lexer") + (description "go-shlex is a simple lexer for go that supports shell-style +quoting, commenting, and escaping.") + (license license:asl2.0)))) -- 2.23.0