summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/3.16/core/libgdata/default.nix
blob: bedbbee2dfe5220a1aa3d36e19537dbf41060fe6 (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
27
28
29
30
31
32
33
{ stdenv, fetchurl, pkgconfig, intltool, libxml2, glib, json_glib
, gobjectIntrospection, liboauth, gnome3, p11_kit, openssl }:

let
  majorVersion = "0.16";
in
stdenv.mkDerivation rec {
  name = "libgdata-${majorVersion}.1";

  src = fetchurl {
    url = "mirror://gnome/sources/libgdata/${majorVersion}/${name}.tar.xz";
    sha256 = "8740e071ecb2ae0d2a4b9f180d2ae5fdf9dc4c41e7ff9dc7e057f62442800827";
  };

  # TODO: need libuhttpmock
  configureFlags = "--disable-tests";
  
  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 gobjectIntrospection 
      liboauth gcr gnome_online_accounts p11_kit openssl ];

  propagatedBuildInputs = [ json_glib ];
      
  meta = with stdenv.lib; {
    description = "GData API library";
    maintainers = with maintainers; [ raskin lethalman ];
    platforms = platforms.linux;
    license = licenses.lgpl21Plus;
  };

}