nixpkgs/pkgs/desktops/gnome-3/core/libzapojit/default.nix

19 lines
586 B
Nix
Raw Normal View History

{ 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; {
2017-10-03 01:26:42 +00:00
description = "GObject wrapper for the SkyDrive and Hotmail REST APIs";
platforms = platforms.linux;
};
}