unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* bug#27092: [PATCH 1/3] gnu: Add liboauth.
@ 2017-05-27  3:23 Kei Kebreau
  2017-05-27  3:23 ` bug#27093: [PATCH 2/3] gnu: Add libgdata Kei Kebreau
                   ` (3 more replies)
  0 siblings, 4 replies; 18+ messages in thread
From: Kei Kebreau @ 2017-05-27  3:23 UTC (permalink / raw)
  To: 27092; +Cc: Kei Kebreau

* gnu/packages/web.scm (liboauth): New variable.
---
 gnu/packages/web.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index bcc20bfdd..ea4ad9b31 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -19,6 +19,7 @@
 ;;; Copyright © 2016 Bake Timmons <b3timmons@speedymail.org>
 ;;; Copyright © 2017 Thomas Danckaert <post@thomasdanckaert.be>
 ;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
+;;; Copyright © 2017 Kei Kebreau <kei@openmailbox.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -68,6 +69,7 @@
   #:use-module (gnu packages gnome)
   #:use-module (gnu packages gnu-doc)
   #:use-module (gnu packages gnupg)
+  #:use-module (gnu packages gnuzilla)
   #:use-module (gnu packages gperf)
   #:use-module (gnu packages gtk)
   #:use-module (gnu packages icu4c)
@@ -708,6 +710,34 @@ modifying pages and incoming and outgoing headers, monitoring pages for
 changes, and much more.")
     (license l:gpl2+)))
 
+(define-public liboauth
+  (package
+    (name "liboauth")
+    (version "1.0.3")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "mirror://sourceforge/liboauth/liboauth-"
+                                  version ".tar.gz"))
+              (sha256
+               (base32
+                "07w1aq8y8wld43wmbk2q8134p3bfkp2vma78mmsfgw2jn1bh3xhd"))))
+    (build-system gnu-build-system)
+    (arguments '(#:configure-flags '("--enable-nss")))
+    (native-inputs `(("pkg-config" ,pkg-config)))
+    (propagated-inputs
+     `(("curl" ,curl)
+       ("nss" ,nss)))
+    (home-page "https://sourceforge.net/projects/liboauth")
+    (synopsis "C library implementing the http://oauth.net API")
+    (description
+     "liboauth is a collection of c functions implementing the http://oauth.net
+API.  liboauth provides functions to escape and encode stings according to
+OAuth specifications and offers high-level functionality built on top to sign
+requests or verify signatures using either NSS or OpenSSL for calculating the
+hash/signatures.")
+    ;; Source code may be distributed under either license.
+    (license (list l:expat l:gpl2+))))
+
 (define-public libyaml
   (package
     (name "libyaml")
-- 
2.13.0

^ permalink raw reply related	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2017-05-31 13:58 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-27  3:23 bug#27092: [PATCH 1/3] gnu: Add liboauth Kei Kebreau
2017-05-27  3:23 ` bug#27093: [PATCH 2/3] gnu: Add libgdata Kei Kebreau
2017-05-27 13:58   ` Leo Famulari
2017-05-27 15:16     ` Kei Kebreau
2017-05-27 15:43       ` Leo Famulari
2017-05-28  0:34         ` Kei Kebreau
2017-05-30 20:49           ` Ricardo Wurmus
2017-05-30 21:06             ` Kei Kebreau
2017-05-31  6:19               ` Ricardo Wurmus
2017-05-27  3:23 ` bug#27094: [PATCH 3/3] gnu: shotwell: Update to 0.26.1 Kei Kebreau
2017-05-27 13:59   ` Leo Famulari
2017-05-27 15:29     ` Kei Kebreau
2017-05-27 15:43       ` Leo Famulari
2017-05-31  6:21   ` Ricardo Wurmus
2017-05-27 13:56 ` bug#27092: [PATCH 1/3] gnu: Add liboauth Leo Famulari
2017-05-28  0:35   ` Kei Kebreau
2017-05-28 23:04     ` Marius Bakke
2017-05-31 13:57 ` Ludovic Courtès

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).