From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53937) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fNJdz-00054B-6K for guix-patches@gnu.org; Mon, 28 May 2018 11:01:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fNJdv-0007K0-VQ for guix-patches@gnu.org; Mon, 28 May 2018 11:01:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:44607) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fNJdv-0007Jw-S0 for guix-patches@gnu.org; Mon, 28 May 2018 11:01:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fNJdv-0001Le-Ix for guix-patches@gnu.org; Mon, 28 May 2018 11:01:03 -0400 Subject: [bug#31625] [PATCH 1/6] gnu: Add go-github-com-urfave-cli. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53585) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fNJcx-0004ZG-In for guix-patches@gnu.org; Mon, 28 May 2018 11:00:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fNJct-0006RE-JB for guix-patches@gnu.org; Mon, 28 May 2018 11:00:03 -0400 Received: from mail2-relais-roc.national.inria.fr ([192.134.164.83]:27059) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fNJct-0006Pq-6u for guix-patches@gnu.org; Mon, 28 May 2018 10:59:59 -0400 From: Rouby Pierre-Antoine Date: Mon, 28 May 2018 16:59:39 +0200 Message-Id: <20180528145939.24256-1-pierre-antoine.rouby@inria.fr> 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: 31625@debbugs.gnu.org Cc: Rouby Pierre-Antoine * gnu/packages/golang.scm (go-github-com-urfave-cli): New variable. --- gnu/packages/golang.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index ba180d1b3..e7fcfa379 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -1472,3 +1472,30 @@ Features include: (description "This package is atomic boolean library for Go code, optimized for performance yet simple to use.") (license license:expat)))) + +(define-public go-github-com-urfave-cli + (let ((commit "cfb38830724cc34fedffe9a2a29fb54fa9169cd1") + (revision "0")) + (package + (name "go-github-com-urfave-cli") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/urfave/cli.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0y6f4sbzkiiwrxbl15biivj8c7qwxnvm3zl2dd3mw4wzg4x10ygj")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/urfave/cli")) + (home-page "https://github.com/urfave/cli") + (synopsis "This package is library for building command line apps in +Go") + (description "A simple, fast, and fun package for building command line +apps in GO. The goal is to enable developers to write fast and distributable +command line applications in an expressive way.") + (license license:expat)))) -- 2.17.0