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

37 lines
1.0 KiB
Nix
Raw Normal View History

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