nixpkgs/pkgs/development/libraries/gfbgraph/default.nix

37 lines
1 KiB
Nix
Raw Normal View History

2018-12-25 18:05:36 +01:00
{ stdenv, fetchurl, pkgconfig, glib, librest
, gnome3, libsoup, json-glib, gobject-introspection }:
2018-12-25 18:05:36 +01:00
stdenv.mkDerivation rec {
2018-03-03 09:05:37 +01:00
pname = "gfbgraph";
version = "0.2.3";
2018-03-21 08:41:02 +01:00
outputs = [ "out" "dev" "devdoc" ];
src = fetchurl {
2018-12-25 18:05:36 +01:00
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "1dp0v8ia35fxs9yhnqpxj3ir5lh018jlbiwifjfn8ayy7h47j4fs";
};
nativeBuildInputs = [ pkgconfig gobject-introspection ];
buildInputs = [ glib gnome3.gnome-online-accounts ];
2018-12-25 18:05:36 +01:00
propagatedBuildInputs = [ libsoup json-glib librest ];
2018-03-21 08:41:02 +01:00
configureFlags = [ "--enable-introspection" ];
enableParallelBuilding = true;
2018-03-03 09:05:37 +01:00
passthru = {
updateScript = gnome3.updateScript {
packageName = pname;
};
};
meta = with stdenv.lib; {
2018-12-25 18:05:36 +01:00
homepage = https://wiki.gnome.org/Projects/GFBGraph;
description = "GLib/GObject wrapper for the Facebook Graph API";
maintainers = gnome3.maintainers;
license = licenses.lgpl2;
platforms = platforms.linux;
};
}