From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51183) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fcvAO-0000FE-TE for guix-patches@gnu.org; Tue, 10 Jul 2018 12:07:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fcvAN-0005DA-ET for guix-patches@gnu.org; Tue, 10 Jul 2018 12:07:04 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:46324) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fcvAN-0005D0-AK for guix-patches@gnu.org; Tue, 10 Jul 2018 12:07:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fcvAN-0000Zw-4G for guix-patches@gnu.org; Tue, 10 Jul 2018 12:07:03 -0400 Subject: [bug#32113] [PATCH 5/5] gnu: Add go-gopkg-in-yaml-v2. Resent-Message-ID: From: Rouby Pierre-Antoine Date: Tue, 10 Jul 2018 18:06:09 +0200 Message-Id: <20180710160609.30540-4-pierre-antoine.rouby@inria.fr> In-Reply-To: <20180710160609.30540-1-pierre-antoine.rouby@inria.fr> References: <20180710160609.30540-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: 32113@debbugs.gnu.org Cc: Rouby Pierre-Antoine * gnu/packages/golang.scm (go-gopkg-in-yaml-v2): 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 e6ef7c8d9..6d03d6132 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -1940,3 +1940,30 @@ Given a cron expression and a time stamp.") (synopsis "Rich testing for Go language") (description "This package is rich test library for Go language.") (license license:asl2.0)))) + +(define-public go-gopkg-in-yaml-v2 + (let ((commit "14227de293ca979cf205cd88769fe71ed96a97e2") + (revision "0")) + (package + (name "go-gopkg-in-yaml-v2") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/yaml.v2.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "038hnrjcnjygyi3qidfrkpkakis82qg381sr495d2s40g2dwlzah")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/yaml.v2")) + (native-inputs + `(("go-gopkg-in-check-v1" ,go-gopkg-in-check-v1))) + (home-page "https://gopkg.in/yaml.v2") + (synopsis "YAML support for the Go language.") + (description "This package is library for encode and decode YAML values +in Go language.") + (license license:asl2.0)))) -- 2.17.0