unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: phodina via Guix-patches via <guix-patches@gnu.org>
To: "44814@debbugs.gnu.org" <44814@debbugs.gnu.org>
Subject: [bug#44814] [PATCH v2] gnu: Add oauth2l.
Date: Wed, 03 Nov 2021 12:14:20 +0000	[thread overview]
Message-ID: <C38NK8s6W4fHgtz8Cq2kYj_GZ2xKkVS7FS4Jn0fmBAzNGxjHZDIHPTByE4KSaSqTreR7vX9IOy2qtRGoNjyrMPJLTQEvpTAHy0WGjNXd5PE=@protonmail.com> (raw)
In-Reply-To: <FTBLTXXQ70.3V74YN1YD0339@wilsonb.com>

Here's updated version of the patch. Otherwise LGTM.

* gnu/packages/authentication.scm (oauth2l): New variable.

--8<---------------cut here---------------start------------->8---
diff --git a/gnu/packages/authentication.scm b/gnu/packages/authentication.scm
index a8070f4789..487b7171b1 100644
--- a/gnu/packages/authentication.scm
+++ b/gnu/packages/authentication.scm
@@ -1,6 +1,7 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2018, 2020, 2021 Tobias Geerinckx-Rice <me@tobias.gr>
 ;;; Copyright © 2019, 2020 Ricardo Wurmus <rekado@elephly.net>
+;;; Copyright © 2020 B. Wilson <elaexuotee@wilsonb.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -27,6 +28,7 @@ (define-module (gnu packages authentication)
   #:use-module (gnu packages tls)
   #:use-module (gnu packages xml)
   #:use-module (guix build-system gnu)
+  #:use-module (guix build-system go)
   #:use-module (guix download)
   #:use-module (guix git-download)
   #:use-module ((guix licenses) #:prefix license:)
@@ -91,6 +93,32 @@ (define-public oath-toolkit
     (license (list license:lgpl2.1+     ; the libraries (liboath/ & libpskc/)
                    license:gpl3+))))    ; the tools (everything else)

+(define-public oauth2l
+  (package
+    (name "oauth2l")
+    (version "1.2.2")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/google/oauth2l")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0a9x0b31ybyjg0k7923xw6zr6crm0kigcn8g6hyr228nbvw35r8w"))))
+    (build-system go-build-system)
+    (arguments
+     '(#:import-path "github.com/google/oauth2l"))
+    (home-page "https://github.com/google/oauth2l")
+    (synopsis "Simple CLI for interacting with Google API authentication")
+    (description
+     "@code{oauth2l} (pronounced ``oauth tool'') is a simple command-line tool
+for working with @url{https://developers.google.com/identity/protocols/OAuth2,
+Google OAuth 2.0} written in Go.  Its primary use is to fetch and print OAuth
+2.0 access tokens, which can be used with other command-line tools and
+scripts.")
+    (license license:asl2.0)))
+
 (define-public yubico-pam
   (let ((commit "b5bd00db81e0e0e0ecced65c684080bb56ddc35b")
         (revision "0"))
--
2.33.1




  reply	other threads:[~2021-11-03 12:15 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-11-23  8:45 [bug#44814] gnu: Add oauth2l elaexuotee--- via Guix-patches via
2021-11-03 12:14 ` phodina via Guix-patches via [this message]
2022-01-14 20:39   ` [bug#44814] [PATCH v2] " Nicolas Goaziou

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='C38NK8s6W4fHgtz8Cq2kYj_GZ2xKkVS7FS4Jn0fmBAzNGxjHZDIHPTByE4KSaSqTreR7vX9IOy2qtRGoNjyrMPJLTQEvpTAHy0WGjNXd5PE=@protonmail.com' \
    --to=guix-patches@gnu.org \
    --cc=44814@debbugs.gnu.org \
    --cc=phodina@protonmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).