mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 21:33:03 +03:00
gfbgraph: new package
GLib/GObject wrapper for the Facebook Graph API
This commit is contained in:
parent
74223e3d2f
commit
3c76ece85b
@ -167,6 +167,8 @@ rec {
|
||||
|
||||
#### Misc -- other packages on http://ftp.gnome.org/pub/GNOME/sources/
|
||||
|
||||
gfbgraph = callPackage ./misc/gfbgraph { };
|
||||
|
||||
goffice = callPackage ./misc/goffice { };
|
||||
|
||||
gitg = callPackage ./misc/gitg { };
|
||||
|
23
pkgs/desktops/gnome-3/misc/gfbgraph/default.nix
Normal file
23
pkgs/desktops/gnome-3/misc/gfbgraph/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ stdenv, intltool, fetchurl, pkgconfig, glib
|
||||
, gnome3, libsoup, json_glib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gfbgraph-0.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/gfbgraph/0.2/${name}.tar.xz";
|
||||
sha256 = "534ca84920445b9d89e2480348eedde3ce950db3628ae0a79703e8f2d52fa724";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig glib libsoup gnome3.gnome_online_accounts
|
||||
json_glib gnome3.rest ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "GLib/GObject wrapper for the Facebook Graph API";
|
||||
maintainers = with maintainers; [ lethalman ];
|
||||
license = licenses.lgpl2;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user