blob: 93812a08302dfa691a986a09d672958e6cf99c53 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{ pkgs ? (import ../../../. {}).third_party, ... }:
let
hlib = pkgs.haskell.lib;
in
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));
})
|