59 lines
1.8 KiB
Nix
59 lines
1.8 KiB
Nix
{ fetchurl, stdenv, substituteAll, pkgconfig, gnome3, python3, gobjectIntrospection
|
|
, intltool, libsoup, libxml2, libsecret, icu, sqlite, tzdata, libcanberra-gtk3
|
|
, p11-kit, db, nspr, nss, libical, gperf, wrapGAppsHook, glib-networking, pcre
|
|
, vala, cmake, ninja, kerberos, openldap, webkitgtk, libaccounts-glib, json-glib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "evolution-data-server-${version}";
|
|
version = "3.30.2";
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/evolution-data-server/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
|
sha256 = "0h4f71kpf2ypdgifg369z35pk4cq99daw540yzjpax52grav2fjv";
|
|
};
|
|
|
|
patches = [
|
|
(substituteAll {
|
|
src = ./fix-paths.patch;
|
|
inherit tzdata;
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake ninja pkgconfig intltool python3 gperf wrapGAppsHook gobjectIntrospection vala
|
|
];
|
|
buildInputs = with gnome3; [
|
|
glib libsoup libxml2 gtk gnome-online-accounts
|
|
gcr p11-kit libgweather libgdata libaccounts-glib json-glib
|
|
icu sqlite kerberos openldap webkitgtk glib-networking
|
|
libcanberra-gtk3 pcre
|
|
];
|
|
|
|
propagatedBuildInputs = [ libsecret nss nspr libical db ];
|
|
|
|
cmakeFlags = [
|
|
"-DENABLE_UOA=OFF"
|
|
"-DENABLE_VALA_BINDINGS=ON"
|
|
"-DENABLE_INTROSPECTION=ON"
|
|
"-DCMAKE_SKIP_BUILD_RPATH=OFF"
|
|
"-DINCLUDE_INSTALL_DIR=${placeholder "dev"}/include"
|
|
];
|
|
|
|
|
|
passthru = {
|
|
updateScript = gnome3.updateScript {
|
|
packageName = "evolution-data-server";
|
|
};
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Unified backend for programs that work with contacts, tasks, and calendar information";
|
|
homepage = https://wiki.gnome.org/Apps/Evolution;
|
|
license = licenses.lgpl2;
|
|
maintainers = gnome3.maintainers;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|