taffybar: work around repeated arguments bug

Fixes #40013
This commit is contained in:
Brian McKenna 2018-06-03 19:22:22 +10:00
parent 323c2a1c6b
commit 9dcf7d0d4e

View File

@ -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;
});
}
//