From 7d9a258576c294270235349e81ea3675495c9f23 Mon Sep 17 00:00:00 2001 From: Ellie Hermaszewska Date: Thu, 8 Dec 2022 10:21:44 +0800 Subject: [PATCH] haskellPackages.vulkan-utils: dontCheck --- pkgs/development/haskell-modules/configuration-common.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index efdfb5925835..0fd9b3ae78b7 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -844,7 +844,8 @@ self: super: { # Compiles some C or C++ source which requires these headers VulkanMemoryAllocator = addExtraLibrary pkgs.vulkan-headers super.VulkanMemoryAllocator; - vulkan-utils = addExtraLibrary pkgs.vulkan-headers super.vulkan-utils; + # dontCheck can be removed on the next package set bump + vulkan-utils = dontCheck (addExtraLibrary pkgs.vulkan-headers super.vulkan-utils); # https://github.com/dmwit/encoding/pull/3 encoding = doJailbreak (appendPatch ./patches/encoding-Cabal-2.0.patch super.encoding);