taffybar: build using GHC 8.10.7

taffybar's GHC 9.0 patches are unreleased and not easy to backport.
This commit is contained in:
sternenseemann 2022-03-28 13:10:21 +02:00
parent f0839d8bcd
commit 6da0212360
2 changed files with 6 additions and 2 deletions

View file

@ -116,4 +116,6 @@ self: super: {
mysql-simple = addBuildDepends [
self.blaze-textual
] super.mysql-simple;
taffybar = markUnbroken (doDistribute super.taffybar);
}

View file

@ -29412,8 +29412,10 @@ with pkgs;
# customConfig = builtins.readFile ./tabbed.config.h;
};
taffybar = callPackage ../applications/window-managers/taffybar {
inherit (haskellPackages) ghcWithPackages taffybar;
# Use GHC 9.0 when this asserts starts to fire
taffybar = assert haskellPackages.taffybar.version == "3.3.0";
callPackage ../applications/window-managers/taffybar {
inherit (haskell.packages.ghc8107) ghcWithPackages taffybar;
};
tagainijisho = callPackage ../applications/office/tagainijisho {};