diff options
author | 宋文武 <iyzsong@gmail.com> | 2015-06-11 23:29:19 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@gmail.com> | 2015-06-11 23:30:54 +0800 |
commit | 4510b2da3e496f22495ecf9196e8f81dd1806b6d (patch) | |
tree | cacdb3f7f8b7ea99e3409f18857723c407cac102 | |
parent | 8b1c8e4e27e3973ea97ecf7d774540a43886b90e (diff) | |
download | patches-4510b2da3e496f22495ecf9196e8f81dd1806b6d.tar patches-4510b2da3e496f22495ecf9196e8f81dd1806b6d.tar.gz |
gnu: Add librest.
* gnu/packages/gnome.scm (librest): New variable.
-rw-r--r-- | gnu/packages/gnome.scm | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 4af1d13495..4599f4d234 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -1854,6 +1854,40 @@ library.") library.") (license license:lgpl2.0+))) +(define-public librest + (package + (name "librest") + (version "0.7.93") + (source (origin + (method url-fetch) + (uri (string-append "mirror://gnome/sources/rest/" + (version-major+minor version) "/" + "rest-" version ".tar.xz")) + (sha256 + (base32 + "05mj10hhiik23ai8w4wkk5vhsp7hcv24bih5q3fl82ilam268467")))) + (build-system gnu-build-system) + (arguments + '(#:tests? #f ; tests require internet connection + #:configure-flags + '("--with-ca-certificates=/etc/ssl/certs/ca-certificates.crt"))) + (native-inputs + `(("glib-mkenums" ,glib "bin") + ("gobject-introspection" ,gobject-introspection) + ("pkg-config" ,pkg-config))) + (propagated-inputs + ;; rest-0.7.pc refers to all these. + `(("glib" ,glib) + ("libsoup" ,libsoup) + ("libxml2" ,libxml2))) + (home-page "http://www.gtk.org/") + (synopsis "RESTful web api query library") + (description + "This library was designed to make it easier to access web services that +claim to be \"RESTful\". It includes convenience wrappers for libsoup and +libxml to ease remote use of the RESTful API.") + (license license:lgpl2.1+))) + (define-public libsoup (package (name "libsoup") |