From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:42475) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iFPrZ-0004TZ-JG for guix-patches@gnu.org; Tue, 01 Oct 2019 17:39:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iFPrX-0001pB-7U for guix-patches@gnu.org; Tue, 01 Oct 2019 17:39:17 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:54513) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iFPrU-0001mP-VX for guix-patches@gnu.org; Tue, 01 Oct 2019 17:39:13 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iFPrU-0007Im-QL for guix-patches@gnu.org; Tue, 01 Oct 2019 17:39:12 -0400 Subject: [bug#37444] [PATCH v4 18/24] added go package go-github-com-riywo-loginshell Resent-Message-ID: From: Martin Becze Date: Tue, 1 Oct 2019 17:37:20 -0400 Message-Id: <20191001213726.21676-18-mjbecze@riseup.net> In-Reply-To: <20191001213726.21676-1-mjbecze@riseup.net> References: <20191001213726.21676-1-mjbecze@riseup.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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: 37444@debbugs.gnu.org Cc: Martin Becze * gnu/packages/golang.scm (go-github-com-riywo-loginshell): added package --- gnu/packages/golang.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index bb00230b60..9fcf8d8b49 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -4137,3 +4137,28 @@ quoting, commenting, and escaping.") (synopsis "Golang counters for readers/writers") (description "Golang counters for readers/writers") (license license:expat)))) + +(define-public go-github-com-riywo-loginshell + (let ((url "https://github.com/riywo/loginshell") + (commit "2ed199a032f65b5e6a0a1294abc96b7d3efade86")) + (package + (name "go-github-com-riywo-loginshell") + (version (git-version "0.0.0" "0" commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url url) + (commit commit))) + (sha256 + (base32 + "1chhpp22kd3r2h84206bvdjj6815n4r6pjq8n9jhav9mfal4qvzj")) + (file-name (git-file-name name version)))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/riywo/loginshell" + #:tests? #f)) + (home-page url) + (synopsis "A golang library to get the login shell of the current user") + (description "A golang library to get the login shell of the current user.") + (license license:expat)))) -- 2.23.0