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

24 lines
682 B
Nix
Raw Normal View History

{ stdenv, intltool, fetchurl, pkgconfig, glib
, gnome3, libsoup, json_glib }:
stdenv.mkDerivation rec {
2014-05-19 18:20:11 +02:00
name = "gfbgraph-0.2.2";
src = fetchurl {
url = "mirror://gnome/sources/gfbgraph/0.2/${name}.tar.xz";
2014-05-19 18:20:11 +02:00
sha256 = "66c7b1c951863565c179d0b4b5207f27b3b36f80afed9f6a9acfc5fc3ae775d4";
};
2014-05-19 18:20:11 +02:00
buildInputs = [ pkgconfig 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 = with maintainers; [ lethalman ];
license = licenses.lgpl2;
platforms = platforms.linux;
};
}