From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Kost Subject: Re: [WIP 7/8] gnu: Add gfbgraph. Date: Sat, 16 Apr 2016 12:32:58 +0300 Message-ID: <87h9f1j3ud.fsf@gmail.com> References: <3040ba094f18bf9a8de46aae22d978a80c3a970e.1460775480.git.leo@famulari.name> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40237) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1arMbA-0005FL-0Y for guix-devel@gnu.org; Sat, 16 Apr 2016 05:33:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1arMb5-0000Uf-6t for guix-devel@gnu.org; Sat, 16 Apr 2016 05:33:03 -0400 Received: from mail-lf0-x241.google.com ([2a00:1450:4010:c07::241]:35012) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1arMb4-0000UZ-Vg for guix-devel@gnu.org; Sat, 16 Apr 2016 05:32:59 -0400 Received: by mail-lf0-x241.google.com with SMTP id o124so19660332lfb.2 for ; Sat, 16 Apr 2016 02:32:58 -0700 (PDT) In-Reply-To: <3040ba094f18bf9a8de46aae22d978a80c3a970e.1460775480.git.leo@famulari.name> (Leo Famulari's message of "Fri, 15 Apr 2016 23:02:28 -0400") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: Leo Famulari Cc: guix-devel@gnu.org Leo Famulari (2016-04-16 06:02 +0300) wrote: > * 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 ^^^^^^^ Leftover? > + )))) > + (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? Did you check if it's 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+))) -- Alex