From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51998) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eV1eL-0005bx-Lp for guix-patches@gnu.org; Fri, 29 Dec 2017 15:53:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eV1eJ-0006QJ-Mn for guix-patches@gnu.org; Fri, 29 Dec 2017 15:53:05 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:48304) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eV1eJ-0006Pl-JB for guix-patches@gnu.org; Fri, 29 Dec 2017 15:53:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eV1eJ-0007zM-C7 for guix-patches@gnu.org; Fri, 29 Dec 2017 15:53:03 -0500 Subject: [bug#29900] [PATCH 3/4] gnu: Add go-github-com-davidjpeacock-cli. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51571) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eV1df-0005Vl-AV for guix-patches@gnu.org; Fri, 29 Dec 2017 15:52:24 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eV1db-0004z2-V8 for guix-patches@gnu.org; Fri, 29 Dec 2017 15:52:23 -0500 Received: from out2-smtp.messagingengine.com ([66.111.4.26]:48821) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eV1db-0004xR-Lp for guix-patches@gnu.org; Fri, 29 Dec 2017 15:52:19 -0500 Received: from jasmine.lan (c-73-165-108-70.hsd1.pa.comcast.net [73.165.108.70]) by mail.messagingengine.com (Postfix) with ESMTPA id B4EB624741 for ; Fri, 29 Dec 2017 15:52:18 -0500 (EST) From: Leo Famulari Date: Fri, 29 Dec 2017 15:52:12 -0500 Message-Id: In-Reply-To: <114368f8811b0fbc225b37f859cc6d8ec9bb2959.1514580733.git.leo@famulari.name> References: <114368f8811b0fbc225b37f859cc6d8ec9bb2959.1514580733.git.leo@famulari.name> In-Reply-To: <114368f8811b0fbc225b37f859cc6d8ec9bb2959.1514580733.git.leo@famulari.name> References: <114368f8811b0fbc225b37f859cc6d8ec9bb2959.1514580733.git.leo@famulari.name> 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: 29900@debbugs.gnu.org * gnu/packages/golang.scm (go-github-com-davidjpeacock-cli): New variable. --- gnu/packages/golang.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 43dce66fd..287d985cf 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -428,3 +428,27 @@ Netscape/Mozilla's old-style cookie files. It also implements a simple cookie jar struct to manage the cookies added to the cookie jar.") (home-page "https://github.com/aki237/nscjar") (license license:expat)))) + +(define-public go-github-com-davidjpeacock-cli + (let ((commit "8ba6f23b6e36d03666a14bd9421f5e3efcb59aca") + (revision "0")) + (package + (name "go-github-com-davidjpeacock-cli") + (version (git-version "1.19.1" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/davidjpeacock/cli.git") + (commit commit))) + (sha256 + (base32 + "01s53ny3p0fdx64rnwcnmjj4xpc5adihnh6islsfq5z1ph2phhnj")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/davidjpeacock/cli")) + (synopsis "Build command-line interfaces in Go") + (description "@code{cli} is a package for building command line +interfaces in Go. The goal is to enable developers to write fast and +distributable command line applications in an expressive way.") + (home-page "https://github.com/davidjpeacock/cli") + (license license:expat)))) -- 2.15.1