summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorBrian McKenna <brian@brianmckenna.org>2018-06-03 19:22:22 +1000
committerBrian McKenna <brian@brianmckenna.org>2018-06-03 19:24:28 +1000
commit9dcf7d0d4e5194677785996d3fbc7f044240b853 (patch)
tree4d188d2deae2ad77faecd6f2b56a24ae4cff032d /pkgs/development/haskell-modules
parent323c2a1c6b1fe17d7f32451ad82e646c5e610e3c (diff)
downloadnixlib-9dcf7d0d4e5194677785996d3fbc7f044240b853.tar
nixlib-9dcf7d0d4e5194677785996d3fbc7f044240b853.tar.gz
nixlib-9dcf7d0d4e5194677785996d3fbc7f044240b853.tar.bz2
nixlib-9dcf7d0d4e5194677785996d3fbc7f044240b853.tar.lz
nixlib-9dcf7d0d4e5194677785996d3fbc7f044240b853.tar.xz
nixlib-9dcf7d0d4e5194677785996d3fbc7f044240b853.tar.zst
nixlib-9dcf7d0d4e5194677785996d3fbc7f044240b853.zip
taffybar: work around repeated arguments bug
Fixes #40013
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 387983003af3..b7419a1ff403 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -1049,6 +1049,12 @@ self: super: {
   # Work around overspecified constraint on github ==0.18.
   github-backup = doJailbreak super.github-backup;
 
+  # Work around large number of repeated arguments
+  # https://github.com/NixOS/nixpkgs/issues/40013
+  taffybar = super.taffybar.overrideDerivation (drv: {
+    strictDeps = true;
+  });
+
 }
 
 //