evolution-data-server: Generate vala bindings
This commit is contained in:
parent
668a0bbfc7
commit
4232f21de3
@ -1,5 +1,5 @@
|
||||
{ fetchurl, stdenv, pkgconfig, gnome3, python, intltool, libsoup, libxml2, libsecret
|
||||
, p11_kit, db, nspr, nss, libical, gperf }:
|
||||
, p11_kit, db, nspr, nss, libical, gperf, valaSupport ? true, vala }:
|
||||
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@ -12,10 +12,12 @@ stdenv.mkDerivation rec {
|
||||
|
||||
buildInputs = with gnome3;
|
||||
[ pkgconfig glib python intltool libsoup libxml2 gtk gnome_online_accounts libsecret
|
||||
gcr p11_kit db nspr nss libgweather libical libgdata gperf ];
|
||||
gcr p11_kit db nspr nss libgweather libical libgdata gperf ]
|
||||
++ stdenv.lib.optional valaSupport vala;
|
||||
|
||||
# uoa irrelevant for now
|
||||
configureFlags = "--disable-uoa --with-nspr-includes=${nspr}/include/nspr --with-nss-includes=${nss}/include/nss";
|
||||
configureFlags = ["--disable-uoa" "--with-nspr-includes=${nspr}/include/nspr" "--with-nss-includes=${nss}/include/nss"]
|
||||
++ stdenv.lib.optional valaSupport "--enable-vala-bindings";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
platforms = platforms.linux;
|
||||
|
Loading…
Reference in New Issue
Block a user