guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[WIP 7/8] gnu: Add gfbgraph.


From: Leo Famulari
Subject: [WIP 7/8] gnu: Add gfbgraph.
Date: Fri, 15 Apr 2016 23:02:28 -0400

* gnu/packages/gnome.scm (gfbgraph): New variable.
---
 gnu/packages/gnome.scm | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index c213da0..fa21a38 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -5039,3 +5039,36 @@ create metacontacts.  It's written in Vala, which 
generates C code when
 compiled.")
     (home-page "https://wiki.gnome.org/Projects/Folks";)
     (license license:lgpl2.1+)))
+
+(define-public gfbgraph
+  (package
+    (name "gfbgraph")
+    (version "0.2.3")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://gnome/sources/" name "/"
+                    (version-major+minor version) "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "1dp0v8ia35fxs9yhnqpxj3ir5lh018jlbiwifjfn8ayy7h47j4fs" ; 0.2.3
+                ))))
+    (build-system glib-or-gtk-build-system)
+    (arguments
+     `(#:tests? #f ; 
http://www.linuxfromscratch.org/blfs/view/stable-systemd/gnome/gfbgraph.html
+       #:configure-flags '("--disable-gtk-doc" ; --enable-gtk-doc fails even 
with gtk-doc as native-input
+                           "--disable-static"
+                           "--enable-introspection")))
+    (native-inputs
+     `(("pkg-config" ,pkg-config) ; necessary?
+       ("gobject-introspection" ,gobject-introspection)))
+    (inputs
+     `(("json-glib" ,json-glib)
+       ("gnome-online-accounts" ,gnome-online-accounts)
+       ("rest" ,rest)))
+    (synopsis "GLib/GObject wrapper for the Facebook API")
+    (description "This library allows you to use the Facebook API from
+GLib/GObject code.")
+    (home-page "https://wiki.gnome.org/Projects/GFBGraph";)
+    (license license:lgpl2.1+)))
-- 
2.7.3




reply via email to

[Prev in Thread] Current Thread [Next in Thread]