summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/core/libzapojit/default.nix
blob: 8bd9e11d95f36fcd05c1dc72c89ba39a2aafaaad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, fetchurl, pkgconfig, glib, intltool, json-glib, rest, libsoup, gtk, gnome-online-accounts }:

stdenv.mkDerivation rec {
  name = "libzapojit-0.0.3";

  src = fetchurl {
    url = "mirror://gnome/sources/libzapojit/0.0/${name}.tar.xz";
    sha256 = "0zn3s7ryjc3k1abj4k55dr2na844l451nrg9s6cvnnhh569zj99x";
  };

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ glib intltool json-glib rest libsoup gtk gnome-online-accounts ];

  meta = with stdenv.lib; {
    description = "GObject wrapper for the SkyDrive and Hotmail REST APIs";
    platforms = platforms.linux;
  };
}