From 0dfc2d82d0ac5ecc94f2f9fd4072f81238811a0e Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Sat, 12 Jul 2025 12:01:44 +0200 Subject: [PATCH] libical: don't build examples One of these fails to link in a static build. I've fixed it upstream, but I don't think there's any value building the examples in Nixpkgs regardless, so let's disable them. Link: https://github.com/libical/libical/pull/932 --- pkgs/by-name/li/libical/package.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/by-name/li/libical/package.nix b/pkgs/by-name/li/libical/package.nix index 6015ecb0a668..7eeed0f33b2c 100644 --- a/pkgs/by-name/li/libical/package.nix +++ b/pkgs/by-name/li/libical/package.nix @@ -80,6 +80,7 @@ stdenv.mkDerivation (finalAttrs: { cmakeFlags = [ "-DENABLE_GTK_DOC=False" + "-DLIBICAL_BUILD_EXAMPLES=False" "-DGOBJECT_INTROSPECTION=${if withIntrospection then "True" else "False"}" "-DICAL_GLIB_VAPI=${if withIntrospection then "True" else "False"}" ]