diff options
author | Skylar Hill <stellarskylark@posteo.net> | 2025-02-16 15:13:22 +0000 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2025-03-25 11:37:02 +0100 |
commit | 29f52eed721f27c1b8020f889a657339521acc1c (patch) | |
tree | f09a3e54f6b9ca55b583d5cb7b14933655180b26 /gnu/packages/guile-xyz.scm | |
parent | 281a616d7235d5cfbce695af2e820deaba45bdf4 (diff) |
gnu: Add guile-oauth.
* gnu/packages/guile-xyz.scm (guile-oauth): New variable.
Change-Id: Ie5e8e15a35e2e71171ef6b8ea2e4b86e339152d3
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/guile-xyz.scm')
-rw-r--r-- | gnu/packages/guile-xyz.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index 6c5452389c..f0277f430e 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -322,6 +322,29 @@ more.") currently does not do much, but it might in the future.") (license license:gpl3+))) +(define-public guile-oauth + (package + (name "guile-oauth") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/aconchillo/guile-oauth") + (commit version))) + (file-name (string-append name "-" version "-checkout")) + (sha256 + (base32 "002hgs4xfrrz0rqa6n1078cn7vz5f70azw1kpljvb4dmv228gfxq")))) + (build-system gnu-build-system) + (native-inputs (list autoconf automake pkg-config)) + (inputs (list guile-3.0 gnutls guile-gcrypt guile-gnutls guile-json-4)) + (home-page "https://github.com/aconchillo/guile-oauth") + (synopsis "OAuth module for Guile") + (description + "This package provides Guile modules to interface with the OAuth and +OAuth2 protocols.") + (license license:gpl3+))) + (define-public guile-openai (let ((commit "751cd5db5f8bb7c00e60042a7ec86100930b0f02") (revision "1")) |