gnome3: use the same version of Vala

This commit is contained in:
Jan Tojnar
2017-10-10 22:24:04 +02:00
parent 3f610ddd81
commit 5a3b7ef2e7
9 changed files with 17 additions and 17 deletions

View File

@@ -1,6 +1,6 @@
{ stdenv, fetchurl, glib, libxml2, pkgconfig
, gnomeSupport ? true, libgnome_keyring3, sqlite, glib_networking, gobjectIntrospection
, valaSupport ? true, vala_0_32
, valaSupport ? true, vala_0_38
, libintlOrEmpty
, intltool, python }:
let
@@ -25,7 +25,7 @@ stdenv.mkDerivation {
outputs = [ "out" "dev" ];
buildInputs = libintlOrEmpty ++ [ intltool python sqlite ]
++ stdenv.lib.optionals valaSupport [ vala_0_32 ];
++ stdenv.lib.optionals valaSupport [ vala_0_38 ];
nativeBuildInputs = [ pkgconfig ];
propagatedBuildInputs = [ glib libxml2 gobjectIntrospection ]
++ stdenv.lib.optionals gnomeSupport [ libgnome_keyring3 ];