Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions pkgs/development/haskell-modules/configuration-common.nix
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,14 @@ self: super: {
# Too strict lower bound on lens, drop with LTS 23
provide = doJailbreak super.provide;
# Too strict bounds on quickcheck-instances/tasty-qickcheck, drop with LTS 23

# make gtk build with pango >= 1.56: https://github.com/gtk2hs/gtk2hs/issues/337
pango = appendPatch (pkgs.fetchpatch {
url = "https://github.com/gtk2hs/gtk2hs/pull/336/commits/ca7f98bd3e9462deac3661244dc76004a36fc8c3.patch";
hash = "sha256-fsZIwh4MY3Jnr3Gv4vZKl/LwUsJ+H+7KJ8unARQBifE=";
stripLen = 1;
}) super.pango;

lawful-conversions = doJailbreak super.lawful-conversions;

# Out of date test data: https://github.com/ocharles/weeder/issues/176
Expand Down