This is an automated email from the git hooks/post-receive script.
arunisaac pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new ba0340eec2 gnu: Add libjwt.
ba0340eec2 is described below
commit ba0340eec2e50439cfd94e85b40bf41c2d488a74
Author: Arun Isaac <[email protected]>
AuthorDate: Thu Aug 22 16:38:43 2024 +0100
gnu: Add libjwt.
* gnu/packages/web.scm (libjwt): New variable.
Change-Id: Ied516fb41a90de316588622b999b27f0f7ee8de3
---
gnu/packages/web.scm | 26 +++++++++++++++++++++++++-
1 file changed, 25 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 5d2ab791ae..9cd6d4dd40 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -15,7 +15,7 @@
;;; Copyright © 2016 Ben Woodcroft <[email protected]>
;;; Copyright © 2016, 2023 Clément Lassieur <[email protected]>
;;; Copyright © 2016, 2017 Nikita <[email protected]>
-;;; Copyright © 2016–2023 Arun Isaac <[email protected]>
+;;; Copyright © 2016–2024 Arun Isaac <[email protected]>
;;; Copyright © 2016–2022 Tobias Geerinckx-Rice <[email protected]>
;;; Copyright © 2016 Bake Timmons <[email protected]>
;;; Copyright © 2017 Thomas Danckaert <[email protected]>
@@ -1610,6 +1610,30 @@ current version of any major web browser.")
style API.")
(license license:expat))))
+(define-public libjwt
+ (package
+ (name "libjwt")
+ (version "1.17.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
"https://github.com/benmcollins/libjwt/releases/download/v"
+ version "/libjwt-"
+ version ".tar.bz2"))
+ (sha256
+ (base32
+ "1bpfaa0y8bccz5hr677lkrprs07akx02k0qbf82z2c8syr24a77i"))))
+ (build-system gnu-build-system)
+ (inputs
+ (list jansson openssl))
+ (native-inputs
+ (list check pkg-config))
+ (home-page "https://github.com/benmcollins/libjwt")
+ (synopsis "C @acronym{JWT, JSON Web Token} library")
+ (description "@code{libjwt} is a @acronym{JWT, JSON Web Token} library for
+C.")
+ (license license:mpl2.0)))
+
(define-public yajl
(package
(name "yajl")