gnome3.evolution_data_server: clean up
This commit is contained in:
parent
f5d7b05f1e
commit
6002d1785d
@ -1,4 +1,4 @@
|
|||||||
{ fetchurl, stdenv, pkgconfig, gnome3, python, dconf
|
{ fetchurl, stdenv, pkgconfig, gnome3, python3, dconf
|
||||||
, intltool, libsoup, libxml2, libsecret, icu, sqlite
|
, intltool, libsoup, libxml2, libsecret, icu, sqlite
|
||||||
, p11_kit, db, nspr, nss, libical, gperf, makeWrapper, valaSupport ? true
|
, p11_kit, db, nspr, nss, libical, gperf, makeWrapper, valaSupport ? true
|
||||||
, vala, cmake, kerberos, openldap, webkitgtk, libaccounts-glib, json_glib }:
|
, vala, cmake, kerberos, openldap, webkitgtk, libaccounts-glib, json_glib }:
|
||||||
@ -6,21 +6,25 @@
|
|||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
inherit (import ./src.nix fetchurl) name src;
|
inherit (import ./src.nix fetchurl) name src;
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake pkgconfig intltool python gperf makeWrapper ];
|
nativeBuildInputs = [
|
||||||
buildInputs = with gnome3;
|
cmake pkgconfig intltool python3 gperf makeWrapper
|
||||||
[ glib libsoup libxml2 gtk gnome_online_accounts
|
] ++ stdenv.lib.optional valaSupport vala;
|
||||||
(stdenv.lib.getLib dconf) gcr p11_kit libgweather libgdata
|
buildInputs = with gnome3; [
|
||||||
icu sqlite gsettings_desktop_schemas kerberos openldap webkitgtk
|
glib libsoup libxml2 gtk gnome_online_accounts
|
||||||
libaccounts-glib json_glib ]
|
gcr p11_kit libgweather libgdata libaccounts-glib json_glib
|
||||||
++ stdenv.lib.optional valaSupport vala;
|
icu sqlite kerberos openldap webkitgtk
|
||||||
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [ libsecret nss nspr libical db ];
|
propagatedBuildInputs = [ libsecret nss nspr libical db ];
|
||||||
|
|
||||||
# uoa irrelevant for now
|
# uoa irrelevant for now
|
||||||
cmakeFlags = [ "-DENABLE_UOA=OFF" ]
|
cmakeFlags = [
|
||||||
++ stdenv.lib.optionals valaSupport [
|
"-DENABLE_UOA=OFF"
|
||||||
"-DENABLE_VALA_BINDINGS=ON" "-DENABLE_INTROSPECTION=ON"
|
] ++ stdenv.lib.optionals valaSupport [
|
||||||
"-DCMAKE_SKIP_BUILD_RPATH=OFF" ];
|
"-DENABLE_VALA_BINDINGS=ON"
|
||||||
|
"-DENABLE_INTROSPECTION=ON"
|
||||||
|
"-DCMAKE_SKIP_BUILD_RPATH=OFF"
|
||||||
|
];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
@ -33,8 +37,8 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
platforms = platforms.linux;
|
license = licenses.lgpl2;
|
||||||
maintainers = gnome3.maintainers;
|
maintainers = gnome3.maintainers;
|
||||||
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user