tvl-depot/users/glittershark/owothia/packageSet.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
407 B
Nix
Raw Normal View History

{ 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));
})