summary refs log tree commit diff
path: root/pkgs/development/libraries/libical
diff options
context:
space:
mode:
authorBen Wolsieffer <benwolsieffer@gmail.com>2021-03-01 18:55:17 -0500
committerBen Wolsieffer <benwolsieffer@gmail.com>2021-03-01 18:56:52 -0500
commit618bcb8cdbbb28130052eef0edac77aec46e7eb4 (patch)
treee9614d44ce3e6d41b53d0ed4ca5c319db2f05c72 /pkgs/development/libraries/libical
parent01f31b5dc53104fb9feee6ef79e51ba4ed865555 (diff)
downloadnixpkgs-618bcb8cdbbb28130052eef0edac77aec46e7eb4.tar
nixpkgs-618bcb8cdbbb28130052eef0edac77aec46e7eb4.tar.gz
nixpkgs-618bcb8cdbbb28130052eef0edac77aec46e7eb4.tar.bz2
nixpkgs-618bcb8cdbbb28130052eef0edac77aec46e7eb4.tar.lz
nixpkgs-618bcb8cdbbb28130052eef0edac77aec46e7eb4.tar.xz
nixpkgs-618bcb8cdbbb28130052eef0edac77aec46e7eb4.tar.zst
nixpkgs-618bcb8cdbbb28130052eef0edac77aec46e7eb4.zip
libical: fix cross-compilation again
The naming of CMake option required to enable cross-compiling was revised when
the patch was accepted upstream.
Diffstat (limited to 'pkgs/development/libraries/libical')
-rw-r--r--pkgs/development/libraries/libical/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/libical/default.nix b/pkgs/development/libraries/libical/default.nix
index 51e2ff52ff6..fa396e96650 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 = [