summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-common.nix
diff options
context:
space:
mode:
authorJoe Hermaszewski <git@monoid.al>2020-11-04 14:21:32 +0800
committerPeter Simons <simons@cryp.to>2020-11-06 21:37:05 +0100
commit86a1b6c41d5f14d2558d849794766dd64cc8e6dc (patch)
tree767e17d3074c64b45061f125ad3ffd38e7daa80b /pkgs/development/haskell-modules/configuration-common.nix
parentd26890fd15c9e0c7cee1698b7bef8c3ffa478919 (diff)
downloadnixpkgs-86a1b6c41d5f14d2558d849794766dd64cc8e6dc.tar
nixpkgs-86a1b6c41d5f14d2558d849794766dd64cc8e6dc.tar.gz
nixpkgs-86a1b6c41d5f14d2558d849794766dd64cc8e6dc.tar.bz2
nixpkgs-86a1b6c41d5f14d2558d849794766dd64cc8e6dc.tar.lz
nixpkgs-86a1b6c41d5f14d2558d849794766dd64cc8e6dc.tar.xz
nixpkgs-86a1b6c41d5f14d2558d849794766dd64cc8e6dc.tar.zst
nixpkgs-86a1b6c41d5f14d2558d849794766dd64cc8e6dc.zip
haskellPackages.vulkan-utils: Add necessary dependency on vulkan-headers
Also mark as unbroken
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-common.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index ce309376396..41b2080d0d6 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -922,8 +922,9 @@ self: super: {
   # This package refers to the wrong library (itself in fact!)
   vulkan = super.vulkan.override { vulkan = pkgs.vulkan-loader; };
 
-  # Compiles some C++ source which requires these headers
+  # Compiles some C or C++ source which requires these headers
   VulkanMemoryAllocator = addExtraLibrary super.VulkanMemoryAllocator pkgs.vulkan-headers;
+  vulkan-utils = addExtraLibrary super.vulkan-utils pkgs.vulkan-headers;
 
   # https://github.com/dmwit/encoding/pull/3
   encoding = doJailbreak (appendPatch super.encoding ./patches/encoding-Cabal-2.0.patch);