From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56511) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fIZy0-0006XH-Nv for guix-patches@gnu.org; Tue, 15 May 2018 09:26:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fIZxr-0003Uo-Av for guix-patches@gnu.org; Tue, 15 May 2018 09:26:11 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:55556) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fIZxr-0003Uf-7B for guix-patches@gnu.org; Tue, 15 May 2018 09:26:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fIZxr-0001eD-0p for guix-patches@gnu.org; Tue, 15 May 2018 09:26:03 -0400 Subject: [bug#31463] [PATCH 6/6] gnu: Add go-github-com-tevino-abool. References: <20180515130920.850-1-pierre-antoine.rouby@inria.fr> In-Reply-To: <20180515130920.850-1-pierre-antoine.rouby@inria.fr> Resent-Message-ID: From: Rouby Pierre-Antoine Date: Tue, 15 May 2018 15:25:42 +0200 Message-Id: <20180515132542.1156-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: 31463@debbugs.gnu.org Cc: Rouby Pierre-Antoine * gnu/packages/golang.scm (go-github-com-tevino-abool): New variable. --- gnu/packages/golang.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 679ccc5d3..ba180d1b3 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -1446,3 +1446,29 @@ Features include: @item Testing suite interfaces and functions. @end itemize") (license license:expat)))) + +(define-public go-github-com-tevino-abool + (let ((commit + "3c25f2fe7cd0ef3eabefce1d90efd69a65d35b12") + (revision "0")) + (package + (name "go-github-com-tevino-abool") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tevino/abool.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1wxqrclxk93q0aj15z596dx2y57x9nkhi64nbrr5cxnhxn8vwixm")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/tevino/abool")) + (home-page "https://github.com/tevino/abool") + (synopsis "Atomic boolean library for Go code") + (description "This package is atomic boolean library for Go code, +optimized for performance yet simple to use.") + (license license:expat)))) -- 2.17.0