nixpkgs/pkgs/desktops/gnome-3/misc/gfbgraph/default.nix

25 lines
684 B
Nix

{ stdenv, intltool, fetchurl, pkgconfig, glib
, gnome3, libsoup, json_glib }:
stdenv.mkDerivation rec {
name = "gfbgraph-0.2.3";
src = fetchurl {
url = "mirror://gnome/sources/gfbgraph/0.2/${name}.tar.xz";
sha256 = "1dp0v8ia35fxs9yhnqpxj3ir5lh018jlbiwifjfn8ayy7h47j4fs";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ glib gnome3.gnome_online_accounts ];
propagatedBuildInputs = [ libsoup json_glib gnome3.rest ];
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "GLib/GObject wrapper for the Facebook Graph API";
maintainers = gnome3.maintainers;
license = licenses.lgpl2;
platforms = platforms.linux;
};
}