about summary refs log blame commit diff
path: root/users/glittershark/owothia/packageSet.nix
blob: b4742b6ae62494d029218c6a8c2564145db10587 (plain) (tree)
1
2
3
4
5
6
7
8
9
10







                                                   

                                                 











                                                                      
{ pkgs ? (import ../../../. {}).third_party, ... }:

let

  hlib = pkgs.haskell.lib;

in

# overlay can be removed when this is in our pin:
# https://github.com/NixOS/nixpkgs/pull/116803
pkgs.haskellPackages.extend (self: super: {
  regex-tdfa-text = hlib.doJailbreak
    (hlib.appendPatch
      super.regex-tdfa-text
      ./regex-tdfa-text.patch
    );

  fullstop = hlib.dontCheck super.fullstop;

  chatter = hlib.doJailbreak
    (hlib.dontCheck (hlib.appendPatch super.chatter ./chatter.patch));
})