summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/core/evolution-data-server/default.nix
blob: cb3db8432b625054e02ee1eb0f27c93846d3b501 (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
{ fetchurl, stdenv, pkgconfig, gnome3, python, intltool, libsoup, libxml2, libsecret
, p11_kit, db4, nspr, nss, libical, gperf }:


stdenv.mkDerivation rec {
  name = "evolution-data-server-3.10.2";

  src = fetchurl {
    url = "mirror://gnome/sources/evolution-data-server/3.10/${name}.tar.xz";
    sha256 = "1fgchc1gzrhhzgn4zf9par4yz72m82j871kf7pky458mh4c4sf0g";
  };

  buildInputs = with gnome3;
    [ pkgconfig glib python intltool libsoup libxml2 gtk gnome_online_accounts libsecret
      gcr p11_kit db4 nspr nss libgweather libical libgdata gperf ];

  # uoa irrelevant for now
  configureFlags = "--disable-uoa --with-nspr-includes=${nspr}/include/nspr --with-nss-includes=${nss}/include/nss";

  meta = with stdenv.lib; {
    platforms = platforms.linux;
  };

}