From 618bcb8cdbbb28130052eef0edac77aec46e7eb4 Mon Sep 17 00:00:00 2001 From: Ben Wolsieffer Date: Mon, 1 Mar 2021 18:55:17 -0500 Subject: [PATCH] libical: fix cross-compilation again The naming of CMake option required to enable cross-compiling was revised when the patch was accepted upstream. --- pkgs/development/libraries/libical/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/libical/default.nix b/pkgs/development/libraries/libical/default.nix index 51e2ff52ff6e..fa396e966506 100644 --- a/pkgs/development/libraries/libical/default.nix +++ b/pkgs/development/libraries/libical/default.nix @@ -67,7 +67,7 @@ stdenv.mkDerivation rec { "-DGOBJECT_INTROSPECTION=True" "-DICAL_GLIB_VAPI=True" ] ++ lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [ - "-DIMPORT_GLIB_SRC_GENERATOR=${lib.getDev buildPackages.libical}/lib/cmake/LibIcal/GlibSrcGenerator.cmake" + "-DIMPORT_ICAL_GLIB_SRC_GENERATOR=${lib.getDev buildPackages.libical}/lib/cmake/LibIcal/IcalGlibSrcGenerator.cmake" ]; patches = [