about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-9.4.x.nix
diff options
context:
space:
mode:
authorRodney Lorrimar <dev@rodney.id.au>2023-07-26 13:03:02 +0800
committersternenseemann <sternenseemann@systemli.org>2023-07-26 15:15:21 +0200
commit5c24ad1f299cb0d3023f59c04501eb3c8172469a (patch)
treedbd7948f5ee9e935eaeab1d6f905900592d0d559 /pkgs/development/haskell-modules/configuration-ghc-9.4.x.nix
parent9461adddf13e48fd1fe6f60e3feabe693f0611ef (diff)
downloadnixlib-5c24ad1f299cb0d3023f59c04501eb3c8172469a.tar
nixlib-5c24ad1f299cb0d3023f59c04501eb3c8172469a.tar.gz
nixlib-5c24ad1f299cb0d3023f59c04501eb3c8172469a.tar.bz2
nixlib-5c24ad1f299cb0d3023f59c04501eb3c8172469a.tar.lz
nixlib-5c24ad1f299cb0d3023f59c04501eb3c8172469a.tar.xz
nixlib-5c24ad1f299cb0d3023f59c04501eb3c8172469a.tar.zst
nixlib-5c24ad1f299cb0d3023f59c04501eb3c8172469a.zip
haskell.packages.ghc94.taffybar: apply pkgconfig workaround
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-9.4.x.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-9.4.x.nix11
1 files changed, 8 insertions, 3 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-9.4.x.nix b/pkgs/development/haskell-modules/configuration-ghc-9.4.x.nix
index 76af2124a155..fd8c582882aa 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-9.4.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-9.4.x.nix
@@ -115,7 +115,7 @@ in {
 
   # Apply workaround for Cabal 3.8 bug https://github.com/haskell/cabal/issues/8455
   # by making `pkg-config --static` happy. Note: Cabal 3.9 is also affected, so
-  # the GHC 9.6 configuration may need similar overrides eventually.
+  # the GHC 9.6 configuration shall need similar overrides.
   X11-xft = __CabalEagerPkgConfigWorkaround super.X11-xft;
   # Jailbreaks for https://github.com/gtk2hs/gtk2hs/issues/323#issuecomment-1416723309
   glib = __CabalEagerPkgConfigWorkaround (doJailbreak super.glib);
@@ -144,7 +144,12 @@ in {
   gi-soup = __CabalEagerPkgConfigWorkaround super.gi-soup;
   gio = __CabalEagerPkgConfigWorkaround super.gio;
   gtk = __CabalEagerPkgConfigWorkaround super.gtk;
-
-  # Cabal 3.8 bug workaround for applications using haskell-gi family of libraries
   termonad = __CabalEagerPkgConfigWorkaround super.termonad;
+  gi-cairo-render = __CabalEagerPkgConfigWorkaround super.gi-cairo-render;
+  gi-dbusmenu = __CabalEagerPkgConfigWorkaround super.gi-dbusmenu;
+  gi-dbusmenugtk3 = __CabalEagerPkgConfigWorkaround super.gi-dbusmenugtk3;
+  gi-gdkx11 = __CabalEagerPkgConfigWorkaround super.gi-gdkx11;
+  gi-xlib = __CabalEagerPkgConfigWorkaround super.gi-xlib;
+  gtk-sni-tray = __CabalEagerPkgConfigWorkaround super.gtk-sni-tray;
+  taffybar = __CabalEagerPkgConfigWorkaround super.taffybar;
 }