From 31843808bd0b15012f3b0f06924bffabfc8f8aa8 Mon Sep 17 00:00:00 2001 From: Artturin Date: Mon, 25 Jul 2022 20:08:01 +0300 Subject: [PATCH] libical: readd explicit introspection and vapi flags the build doesn't autodetect the existence of the programs required --- pkgs/development/libraries/libical/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/libraries/libical/default.nix b/pkgs/development/libraries/libical/default.nix index 3656d2991a82..3fef461874c9 100644 --- a/pkgs/development/libraries/libical/default.nix +++ b/pkgs/development/libraries/libical/default.nix @@ -64,6 +64,8 @@ stdenv.mkDerivation rec { cmakeFlags = [ "-DENABLE_GTK_DOC=False" + "-DGOBJECT_INTROSPECTION=True" + "-DICAL_GLIB_VAPI=True" ] ++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [ "-DIMPORT_ICAL_GLIB_SRC_GENERATOR=${lib.getDev buildPackages.libical}/lib/cmake/LibIcal/IcalGlibSrcGenerator.cmake" ];