summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/core/libgdata/default.nix
blob: 0808857e11529bf48c057dd66d070c2312b6bb3d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv, fetchurl, pkgconfig, intltool, libxml2, glib, qoauth
, gobjectIntrospection, liboauth, gnome3, p11_kit, openssl }:

stdenv.mkDerivation rec {
  name = "libgdata-0.14.0";

  src = fetchurl {
    url = "mirror://gnome/sources/libgdata/0.14/${name}.tar.xz";
    sha256 = "1scjs944kjazbsh86kdj6w2vprib6yd3wzxzabcs59acmr0m4hax";
  };


  NIX_CFLAGS_COMPILE = "-I${gnome3.libsoup}/include/libsoup-gnome-2.4/ -I${gnome3.gcr}/include/gcr-3 -I${gnome3.gcr}/include/gck-1";

  buildInputs = with gnome3;
    [ pkgconfig libsoup intltool libxml2 glib qoauth gobjectIntrospection
      liboauth gcr gnome_online_accounts p11_kit openssl ];
      
  meta = with stdenv.lib; {
    description = "GData API library";
    maintainers = with maintainers; [ raskin ];
    platforms = platforms.linux;
    license = licenses.lgpl21Plus;
  };

}