From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51186) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fcvAO-0000FJ-U5 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-0005Cu-1F for guix-patches@gnu.org; Tue, 10 Jul 2018 12:07:04 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:46323) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fcvAM-0005Cl-T8 for guix-patches@gnu.org; Tue, 10 Jul 2018 12:07:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fcvAM-0000Zp-Mg for guix-patches@gnu.org; Tue, 10 Jul 2018 12:07:02 -0400 Subject: [bug#32113] [PATCH 4/5] gnu: Add go-gopkg-in-check-v1. Resent-Message-ID: From: Rouby Pierre-Antoine Date: Tue, 10 Jul 2018 18:06:08 +0200 Message-Id: <20180710160609.30540-3-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-check-v1): 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 588fb8572..e6ef7c8d9 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -1916,3 +1916,27 @@ connections in Go langage.") Given a cron expression and a time stamp.") (license (list license:gpl3+ license:asl2.0))))) + +(define-public go-gopkg-in-check-v1 + (let ((commit "20d25e2804050c1cd24a7eea1e7a6447dd0e74ec") + (revision "0")) + (package + (name "go-gopkg-in-check-v1") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/go-check/check") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np")))) + (build-system go-build-system) + (arguments + '(#:import-path "gopkg.in/check.v1")) + (home-page "https://gopkg.in/check.v1") + (synopsis "Rich testing for Go language") + (description "This package is rich test library for Go language.") + (license license:asl2.0)))) -- 2.17.0