2015-01-07 19:31:32 +00:00
|
|
|
{ pkgs }:
|
|
|
|
|
2015-01-10 19:26:08 +00:00
|
|
|
with import ./lib.nix { inherit pkgs; };
|
2015-01-07 19:31:32 +00:00
|
|
|
|
|
|
|
self: super: {
|
|
|
|
|
2015-03-09 19:11:23 +00:00
|
|
|
# Suitable LLVM version.
|
|
|
|
llvmPackages = pkgs.llvmPackages_35;
|
|
|
|
|
2015-01-19 11:12:28 +00:00
|
|
|
# Disable GHC 7.10.x core libraries.
|
2015-01-07 19:31:32 +00:00
|
|
|
array = null;
|
|
|
|
base = null;
|
|
|
|
binary = null;
|
|
|
|
bin-package-db = null;
|
|
|
|
bytestring = null;
|
|
|
|
Cabal = null;
|
|
|
|
containers = null;
|
|
|
|
deepseq = null;
|
|
|
|
directory = null;
|
|
|
|
filepath = null;
|
|
|
|
ghc-prim = null;
|
|
|
|
haskeline = null;
|
|
|
|
hoopl = null;
|
|
|
|
hpc = null;
|
|
|
|
integer-gmp = null;
|
|
|
|
pretty = null;
|
|
|
|
process = null;
|
|
|
|
rts = null;
|
|
|
|
template-haskell = null;
|
|
|
|
terminfo = null;
|
|
|
|
time = null;
|
|
|
|
transformers = null;
|
|
|
|
unix = null;
|
|
|
|
xhtml = null;
|
|
|
|
|
2015-04-11 21:01:10 +00:00
|
|
|
# ekmett/linear#74
|
|
|
|
linear = overrideCabal super.linear (drv: {
|
|
|
|
prePatch = "sed -i 's/-Werror//g' linear.cabal";
|
|
|
|
});
|
|
|
|
|
2015-03-13 03:20:56 +00:00
|
|
|
# Cabal_1_22_1_1 requires filepath >=1 && <1.4
|
|
|
|
cabal-install = dontCheck (super.cabal-install.override { Cabal = null; });
|
|
|
|
|
2015-04-04 03:33:22 +00:00
|
|
|
HStringTemplate = self.HStringTemplate_0_8_3;
|
|
|
|
|
2015-01-10 17:50:49 +00:00
|
|
|
# We have Cabal 1.22.x.
|
|
|
|
jailbreak-cabal = super.jailbreak-cabal.override { Cabal = null; };
|
2015-01-09 18:17:59 +00:00
|
|
|
|
2015-01-09 18:35:41 +00:00
|
|
|
# GHC 7.10.x's Haddock binary cannot generate hoogle files.
|
|
|
|
# https://ghc.haskell.org/trac/ghc/ticket/9921
|
|
|
|
mkDerivation = drv: super.mkDerivation (drv // { doHoogle = false; });
|
2015-01-07 19:31:32 +00:00
|
|
|
|
2015-04-25 02:09:43 +00:00
|
|
|
Extra = appendPatch super.Extra (pkgs.fetchpatch {
|
|
|
|
url = "https://github.com/seereason/sr-extra/commit/29787ad4c20c962924b823d02a7335da98143603.patch";
|
|
|
|
sha256 = "193i1xmq6z0jalwmq0mhqk1khz6zz0i1hs6lgfd7ybd6qyaqnf5f";
|
|
|
|
});
|
|
|
|
|
2015-01-09 19:57:39 +00:00
|
|
|
# haddock: No input file(s).
|
2015-01-10 19:27:16 +00:00
|
|
|
nats = dontHaddock super.nats;
|
2015-02-23 04:51:22 +00:00
|
|
|
bytestring-builder = dontHaddock super.bytestring-builder;
|
2015-01-09 19:57:39 +00:00
|
|
|
|
2015-01-09 21:24:38 +00:00
|
|
|
# We have time 1.5
|
2015-01-10 19:27:16 +00:00
|
|
|
aeson = disableCabalFlag super.aeson "old-locale";
|
2015-01-09 21:24:38 +00:00
|
|
|
|
2015-03-13 03:20:56 +00:00
|
|
|
# requires filepath >=1.1 && <1.4
|
|
|
|
Glob = doJailbreak super.Glob;
|
|
|
|
|
2015-01-07 19:31:32 +00:00
|
|
|
# Setup: At least the following dependencies are missing: base <4.8
|
|
|
|
hspec-expectations = overrideCabal super.hspec-expectations (drv: {
|
|
|
|
patchPhase = "sed -i -e 's|base < 4.8|base|' hspec-expectations.cabal";
|
|
|
|
});
|
2015-01-09 18:38:34 +00:00
|
|
|
utf8-string = overrideCabal super.utf8-string (drv: {
|
|
|
|
patchPhase = "sed -i -e 's|base >= 3 && < 4.8|base|' utf8-string.cabal";
|
|
|
|
});
|
2015-02-23 01:31:28 +00:00
|
|
|
esqueleto = doJailbreak super.esqueleto;
|
2015-04-08 23:33:33 +00:00
|
|
|
pointfree = doJailbreak super.pointfree;
|
2015-01-07 19:31:32 +00:00
|
|
|
|
2015-04-11 19:23:53 +00:00
|
|
|
# acid-state/safecopy#25 acid-state/safecopy#26
|
|
|
|
safecopy = dontCheck (super.safecopy);
|
|
|
|
|
2015-04-22 13:18:56 +00:00
|
|
|
# test suite broken, some instance is declared twice.
|
2015-04-22 19:00:01 +00:00
|
|
|
# https://bitbucket.org/FlorianHartwig/attobencode/issue/1
|
2015-04-22 13:18:56 +00:00
|
|
|
AttoBencode = dontCheck super.AttoBencode;
|
|
|
|
|
2015-01-09 21:18:16 +00:00
|
|
|
# bos/attoparsec#92
|
2015-01-10 19:27:16 +00:00
|
|
|
attoparsec = dontCheck super.attoparsec;
|
2015-01-09 21:18:16 +00:00
|
|
|
|
2015-01-09 18:53:07 +00:00
|
|
|
# Test suite fails with some (seemingly harmless) error.
|
|
|
|
# https://code.google.com/p/scrapyourboilerplate/issues/detail?id=24
|
2015-01-10 19:27:16 +00:00
|
|
|
syb = dontCheck super.syb;
|
2015-01-09 18:53:07 +00:00
|
|
|
|
2015-01-12 14:46:35 +00:00
|
|
|
# Test suite has stricter version bounds
|
|
|
|
retry = dontCheck super.retry;
|
|
|
|
|
2015-01-12 14:58:56 +00:00
|
|
|
# Test suite fails with time >= 1.5
|
|
|
|
http-date = dontCheck super.http-date;
|
|
|
|
|
2015-01-10 10:02:37 +00:00
|
|
|
# Version 1.19.5 fails its test suite.
|
2015-01-10 19:27:16 +00:00
|
|
|
happy = dontCheck super.happy;
|
2015-01-10 10:02:37 +00:00
|
|
|
|
2015-01-23 10:38:49 +00:00
|
|
|
# Test suite fails in "/tokens_bytestring_unicode.g.bin".
|
|
|
|
alex = dontCheck super.alex;
|
|
|
|
|
2015-04-26 07:28:21 +00:00
|
|
|
# https://github.com/haskell/haddock/issues/378
|
|
|
|
haddock-library_1_2_0 = dontCheck super.haddock-library_1_2_0;
|
2015-04-19 17:56:45 +00:00
|
|
|
haddock-library = self.haddock-library_1_2_0;
|
2015-03-13 03:20:56 +00:00
|
|
|
|
2015-01-30 17:43:29 +00:00
|
|
|
# Upstream was notified about the over-specified constraint on 'base'
|
|
|
|
# but refused to do anything about it because he "doesn't want to
|
|
|
|
# support a moving target". Go figure.
|
|
|
|
barecheck = doJailbreak super.barecheck;
|
|
|
|
|
2015-03-27 20:53:11 +00:00
|
|
|
syb-with-class = appendPatch super.syb-with-class (pkgs.fetchpatch {
|
|
|
|
url = "https://github.com/seereason/syb-with-class/compare/adc86a9...719e567.patch";
|
|
|
|
sha256 = "1lwwvxyhxcmppdapbgpfhwi7xc2z78qir03xjrpzab79p2qyq7br";
|
|
|
|
});
|
|
|
|
|
2015-02-23 01:31:28 +00:00
|
|
|
# https://github.com/kazu-yamamoto/unix-time/issues/30
|
|
|
|
unix-time = dontCheck super.unix-time;
|
|
|
|
|
|
|
|
# Until the changes have been pushed to Hackage
|
2015-04-17 20:48:09 +00:00
|
|
|
dependent-sum-template = appendPatch super.dependent-sum-template (pkgs.fetchpatch {
|
|
|
|
url = "https://patch-diff.githubusercontent.com/raw/mokus0/dependent-sum-template/pull/4.patch";
|
|
|
|
sha256 = "1yb1ny4ckl4d3sf4xnvpbsa9rw2dficzgipijs5s3729dnsc3rb0";
|
|
|
|
});
|
2015-04-17 20:47:56 +00:00
|
|
|
mueval = appendPatch super.mueval (pkgs.fetchpatch {
|
|
|
|
url = "https://patch-diff.githubusercontent.com/raw/gwern/mueval/pull/10.patch";
|
|
|
|
sha256 = "1gs8p89d1qsrd1qycbhf6kv4qw0sbb8m6dy106dqkmdzcjzcyq74";
|
|
|
|
});
|
2015-04-25 10:45:35 +00:00
|
|
|
present = appendPatch super.present (pkgs.fetchpatch {
|
|
|
|
url = "https://github.com/chrisdone/present/commit/6a61f099bf01e2127d0c68f1abe438cd3eaa15f7.patch";
|
|
|
|
sha256 = "1vn3xm38v2f4lzyzkadvq322f3s2yf8c88v56wpdpzfxmvlzaqr8";
|
|
|
|
});
|
2015-03-13 03:20:56 +00:00
|
|
|
|
2015-04-17 20:48:54 +00:00
|
|
|
# Already applied in darcs repository.
|
|
|
|
gnuplot = appendPatch super.gnuplot ./gnuplot-fix-new-time.patch;
|
|
|
|
|
2015-03-13 03:20:56 +00:00
|
|
|
ghcjs-prim = self.callPackage ({ mkDerivation, fetchgit, primitive }: mkDerivation {
|
|
|
|
pname = "ghcjs-prim";
|
|
|
|
version = "0.1.0.0";
|
|
|
|
src = fetchgit {
|
|
|
|
url = git://github.com/ghcjs/ghcjs-prim.git;
|
|
|
|
rev = "ca08e46257dc276e01d08fb47a693024bae001fa"; # ghc-7.10 branch
|
|
|
|
sha256 = "0w7sqzp5p70yhmdhqasgkqbf3b61wb24djlavwil2j8ry9y472w3";
|
|
|
|
};
|
|
|
|
buildDepends = [ primitive ];
|
|
|
|
license = pkgs.stdenv.lib.licenses.bsd3;
|
|
|
|
}) {};
|
2015-04-11 21:20:06 +00:00
|
|
|
|
|
|
|
# diagrams/monoid-extras#19
|
|
|
|
monoid-extras = overrideCabal super.monoid-extras (drv: {
|
|
|
|
prePatch = "sed -i 's|4\.8|4.9|' monoid-extras.cabal";
|
|
|
|
});
|
2015-04-11 21:26:32 +00:00
|
|
|
|
|
|
|
# diagrams/statestack#5
|
|
|
|
statestack = overrideCabal super.statestack (drv: {
|
|
|
|
prePatch = "sed -i 's|4\.8|4.9|' statestack.cabal";
|
|
|
|
});
|
2015-04-11 21:40:04 +00:00
|
|
|
|
|
|
|
# diagrams/diagrams-core#83
|
|
|
|
diagrams-core = overrideCabal super.diagrams-core (drv: {
|
|
|
|
prePatch = "sed -i 's|4\.8|4.9|' diagrams-core.cabal";
|
|
|
|
});
|
2015-04-11 22:22:50 +00:00
|
|
|
|
2015-04-17 20:49:02 +00:00
|
|
|
# https://github.com/mokus0/misfortune/pull/1
|
|
|
|
misfortune = appendPatch super.misfortune (pkgs.fetchpatch {
|
|
|
|
url = "https://patch-diff.githubusercontent.com/raw/mokus0/misfortune/pull/1.patch";
|
|
|
|
sha256 = "15frwdallm3i6k7mil26bbjd4wl6k9h20ixf3cmyris3q3jhlcfh";
|
|
|
|
});
|
|
|
|
|
2015-04-14 18:24:58 +00:00
|
|
|
timezone-series = doJailbreak super.timezone-series;
|
|
|
|
timezone-olson = doJailbreak super.timezone-olson;
|
|
|
|
libmpd = dontCheck super.libmpd;
|
|
|
|
xmonad-extras = overrideCabal super.xmonad-extras (drv: {
|
|
|
|
postPatch = ''
|
|
|
|
sed -i -e "s,<\*,<¤,g" XMonad/Actions/Volume.hs
|
|
|
|
'';
|
|
|
|
});
|
2015-03-31 13:30:28 +00:00
|
|
|
|
|
|
|
# Workaround for a workaround, see comment for "ghcjs" flag.
|
|
|
|
jsaddle = let jsaddle' = disableCabalFlag super.jsaddle "ghcjs";
|
|
|
|
in addBuildDepends jsaddle' [ self.glib self.gtk3 self.webkitgtk3
|
|
|
|
self.webkitgtk3-javascriptcore ];
|
|
|
|
|
2015-04-16 10:25:34 +00:00
|
|
|
# Fix evaluation in GHC >=7.8: https://github.com/lambdabot/lambdabot/issues/116
|
|
|
|
lambdabot = appendPatch super.lambdabot ./lambdabot-fix-ghc78.patch;
|
|
|
|
|
2015-04-17 21:25:53 +00:00
|
|
|
# https://github.com/haskell-infra/hackage-trustees/issues/24
|
2015-04-17 20:49:38 +00:00
|
|
|
brainfuck = appendPatch super.brainfuck ./brainfuck-fix-ghc710.patch;
|
|
|
|
unlambda = appendPatch super.unlambda ./unlambda-fix-ghc710.patch;
|
|
|
|
|
2015-04-17 20:50:29 +00:00
|
|
|
# Updated Cabal file from Hackage tightened version bounds for some reason.
|
|
|
|
edit-distance = let pkg = appendPatch super.edit-distance ./edit-distance-fix-boundaries.patch;
|
|
|
|
in appendPatch pkg (pkgs.fetchpatch {
|
|
|
|
url = "https://patch-diff.githubusercontent.com/raw/batterseapower/edit-distance/pull/3.patch";
|
2015-04-25 16:02:02 +00:00
|
|
|
sha256 = "0v47pa5ymh9f23bqpkdv3k7vnb6h3ssccdmjdylhs2ybarqzrcwh";
|
2015-04-17 20:50:29 +00:00
|
|
|
});
|
|
|
|
|
2015-04-17 15:40:48 +00:00
|
|
|
# https://github.com/BNFC/bnfc/issues/137
|
|
|
|
BNFC = markBrokenVersion "2.7.1" super.BNFC;
|
|
|
|
cubical = dontDistribute super.cubical;
|
|
|
|
|
|
|
|
# contacted maintainer by e-mail
|
|
|
|
HList = markBrokenVersion "0.3.4.1" super.HList;
|
2015-04-17 18:25:01 +00:00
|
|
|
AspectAG = dontDistribute super.AspectAG;
|
2015-04-17 15:40:48 +00:00
|
|
|
Rlang-QQ = dontDistribute super.Rlang-QQ;
|
2015-04-17 18:25:01 +00:00
|
|
|
SyntaxMacros = dontDistribute super.SyntaxMacros;
|
|
|
|
expand = dontDistribute super.expand;
|
|
|
|
functional-arrow = dontDistribute super.functional-arrow;
|
|
|
|
guess-combinator = dontDistribute super.guess-combinator;
|
|
|
|
ihaskell-rlangqq = dontDistribute super.ihaskell-rlangqq;
|
|
|
|
ipopt-hs = dontDistribute super.ipopt-hs;
|
|
|
|
murder = dontDistribute super.murder;
|
|
|
|
netcore = dontDistribute super.netcore;
|
|
|
|
nettle-frp = dontDistribute super.nettle-frp;
|
|
|
|
nettle-netkit = dontDistribute super.nettle-netkit;
|
|
|
|
nettle-openflow = dontDistribute super.nettle-openflow;
|
|
|
|
oberon0 = dontDistribute super.oberon0;
|
2015-04-26 07:26:02 +00:00
|
|
|
poly-arity = dontDistribute super.poly-arity;
|
2015-04-17 18:25:01 +00:00
|
|
|
respond = dontDistribute super.respond;
|
2015-04-17 15:40:48 +00:00
|
|
|
semi-iso = dontDistribute super.semi-iso;
|
|
|
|
syntax = dontDistribute super.syntax;
|
|
|
|
syntax-attoparsec = dontDistribute super.syntax-attoparsec;
|
|
|
|
syntax-example = dontDistribute super.syntax-example;
|
|
|
|
syntax-example-json = dontDistribute super.syntax-example-json;
|
2015-04-17 18:25:01 +00:00
|
|
|
syntax-pretty = dontDistribute super.syntax-pretty;
|
2015-04-17 15:40:48 +00:00
|
|
|
syntax-printer = dontDistribute super.syntax-printer;
|
|
|
|
tuple-hlist = dontDistribute super.tuple-hlist;
|
|
|
|
tuple-morph = dontDistribute super.tuple-morph;
|
|
|
|
|
|
|
|
# contacted maintainer by e-mail
|
|
|
|
cmdlib = markBroken super.cmdlib;
|
2015-04-17 18:25:01 +00:00
|
|
|
darcs-fastconvert = dontDistribute super.darcs-fastconvert;
|
|
|
|
ivory-backend-c = dontDistribute super.ivory-backend-c;
|
|
|
|
ivory-bitdata = dontDistribute super.ivory-bitdata;
|
|
|
|
ivory-examples = dontDistribute super.ivory-examples;
|
|
|
|
ivory-hw = dontDistribute super.ivory-hw;
|
2015-04-17 15:40:48 +00:00
|
|
|
laborantin-hs = dontDistribute super.laborantin-hs;
|
|
|
|
|
|
|
|
# https://github.com/cartazio/arithmoi/issues/1
|
|
|
|
arithmoi = markBroken super.arithmoi;
|
2015-04-17 18:25:01 +00:00
|
|
|
NTRU = dontDistribute super.NTRU;
|
|
|
|
arith-encode = dontDistribute super.arith-encode;
|
|
|
|
barchart = dontDistribute super.barchart;
|
2015-04-17 15:40:48 +00:00
|
|
|
constructible = dontDistribute super.constructible;
|
|
|
|
cyclotomic = dontDistribute super.cyclotomic;
|
|
|
|
diagrams = dontDistribute super.diagrams;
|
|
|
|
diagrams-contrib = dontDistribute super.diagrams-contrib;
|
2015-04-17 18:25:01 +00:00
|
|
|
enumeration = dontDistribute super.enumeration;
|
|
|
|
ghci-diagrams = dontDistribute super.ghci-diagrams;
|
2015-04-17 15:40:48 +00:00
|
|
|
ihaskell-diagrams = dontDistribute super.ihaskell-diagrams;
|
|
|
|
nimber = dontDistribute super.nimber;
|
2015-04-20 14:47:41 +00:00
|
|
|
pell = dontDistribute super.pell;
|
2015-04-17 15:40:48 +00:00
|
|
|
quadratic-irrational = dontDistribute super.quadratic-irrational;
|
|
|
|
|
|
|
|
# https://github.com/kazu-yamamoto/ghc-mod/issues/467
|
|
|
|
ghc-mod = markBroken super.ghc-mod;
|
2015-04-17 18:25:01 +00:00
|
|
|
HaRe = dontDistribute super.HaRe;
|
2015-04-17 15:40:48 +00:00
|
|
|
ghc-imported-from = dontDistribute super.ghc-imported-from;
|
|
|
|
git-vogue = dontDistribute super.git-vogue;
|
2015-04-17 18:25:01 +00:00
|
|
|
haskell-token-utils = dontDistribute super.haskell-token-utils;
|
|
|
|
hbb = dontDistribute super.hbb;
|
2015-04-17 15:40:48 +00:00
|
|
|
hsdev = dontDistribute super.hsdev;
|
|
|
|
|
|
|
|
# http://hub.darcs.net/ivanm/graphviz/issue/5
|
|
|
|
graphviz = markBroken super.graphviz;
|
|
|
|
Graphalyze = dontDistribute super.Graphalyze;
|
2015-04-17 18:25:01 +00:00
|
|
|
HLearn-approximation = dontDistribute super.HLearn-approximation;
|
|
|
|
HLearn-classification = dontDistribute super.HLearn-classification;
|
|
|
|
HLearn-distributions = dontDistribute super.HLearn-distributions;
|
|
|
|
SourceGraph = dontDistribute super.SourceGraph;
|
2015-04-17 15:40:48 +00:00
|
|
|
Zora = dontDistribute super.Zora;
|
|
|
|
ampersand = dontDistribute super.ampersand;
|
|
|
|
caffegraph = dontDistribute super.caffegraph;
|
|
|
|
dot2graphml = dontDistribute super.dot2graphml;
|
2015-04-17 18:25:01 +00:00
|
|
|
dvda = dontDistribute super.dvda;
|
2015-04-17 15:40:48 +00:00
|
|
|
erd = dontDistribute super.erd;
|
|
|
|
filediff = dontDistribute super.filediff;
|
|
|
|
fsmActions = dontDistribute super.fsmActions;
|
2015-04-17 18:25:01 +00:00
|
|
|
gbu = dontDistribute super.gbu;
|
|
|
|
geni-gui = dontDistribute super.geni-gui;
|
2015-04-17 15:40:48 +00:00
|
|
|
ghc-vis = dontDistribute super.ghc-vis;
|
2015-04-17 18:25:01 +00:00
|
|
|
grammar-combinators = dontDistribute super.grammar-combinators;
|
|
|
|
llvm-analysis = dontDistribute super.llvm-analysis;
|
2015-04-17 15:40:48 +00:00
|
|
|
llvm-base-types = dontDistribute super.llvm-base-types;
|
2015-04-17 18:25:01 +00:00
|
|
|
llvm-data-interop = dontDistribute super.llvm-data-interop;
|
|
|
|
llvm-tools = dontDistribute super.llvm-tools;
|
|
|
|
marxup = dontDistribute super.marxup;
|
2015-04-17 15:40:48 +00:00
|
|
|
mathgenealogy = dontDistribute super.mathgenealogy;
|
2015-04-17 18:25:01 +00:00
|
|
|
optimusprime = dontDistribute super.optimusprime;
|
|
|
|
phybin = dontDistribute super.phybin;
|
|
|
|
prolog-graph = dontDistribute super.prolog-graph;
|
|
|
|
prolog-graph-lib = dontDistribute super.prolog-graph-lib;
|
|
|
|
teams = dontDistribute super.teams;
|
2015-04-17 15:40:48 +00:00
|
|
|
vacuum-graphviz = dontDistribute super.vacuum-graphviz;
|
2015-04-17 18:25:01 +00:00
|
|
|
vampire = dontDistribute super.vampire;
|
|
|
|
visual-graphrewrite = dontDistribute super.visual-graphrewrite;
|
2015-04-17 15:40:48 +00:00
|
|
|
xdot = dontDistribute super.xdot;
|
|
|
|
|
|
|
|
# https://github.com/lymar/hastache/issues/47
|
|
|
|
hastache = dontCheck super.hastache;
|
|
|
|
|
2015-04-19 17:48:11 +00:00
|
|
|
# The compat library is empty in the presence of mtl 2.2.x.
|
|
|
|
mtl-compat = dontHaddock super.mtl-compat;
|
|
|
|
|
2015-04-19 18:05:11 +00:00
|
|
|
# https://github.com/bos/bloomfilter/issues/11
|
|
|
|
bloomfilter = dontHaddock (appendConfigureFlag super.bloomfilter "--ghc-option=-XFlexibleContexts");
|
|
|
|
|
2015-04-19 18:18:13 +00:00
|
|
|
# https://github.com/ocharles/tasty-rerun/issues/5
|
|
|
|
tasty-rerun = dontHaddock (appendConfigureFlag super.tasty-rerun "--ghc-option=-XFlexibleContexts");
|
|
|
|
|
2015-04-20 15:07:35 +00:00
|
|
|
# Broken with GHC 7.10.x.
|
|
|
|
aeson_0_7_0_6 = markBroken super.aeson_0_7_0_6;
|
|
|
|
annotated-wl-pprint_0_5_3 = markBroken super.annotated-wl-pprint_0_5_3;
|
|
|
|
c2hs_0_20_1 = markBroken super.c2hs_0_20_1;
|
|
|
|
Cabal_1_20_0_3 = markBroken super.Cabal_1_20_0_3;
|
|
|
|
cabal-install_1_18_0_8 = markBroken super.cabal-install_1_18_0_8;
|
|
|
|
containers_0_4_2_1 = markBroken super.containers_0_4_2_1;
|
|
|
|
control-monad-free_0_5_3 = markBroken super.control-monad-free_0_5_3;
|
|
|
|
equivalence_0_2_5 = markBroken super.equivalence_0_2_5;
|
|
|
|
haddock-api_2_15_0_2 = markBroken super.haddock-api_2_15_0_2;
|
|
|
|
lens_4_7_0_1 = markBroken super.lens_4_7_0_1;
|
|
|
|
optparse-applicative_0_10_0 = markBroken super.optparse-applicative_0_10_0;
|
|
|
|
QuickCheck_1_2_0_1 = markBroken super.QuickCheck_1_2_0_1;
|
|
|
|
seqid-streams_0_1_0 = markBroken super.seqid-streams_0_1_0;
|
|
|
|
vector_0_10_9_3 = markBroken super.vector_0_10_9_3;
|
|
|
|
|
2015-04-27 18:02:52 +00:00
|
|
|
# https://github.com/bos/wreq/issues/61
|
|
|
|
wreq = markBrokenVersion "0.3.0.1" (dontCheck super.wreq);
|
|
|
|
wreq-sb = dontDistribute (dontCheck super.wreq-sb);
|
|
|
|
hipbot = dontDistribute super.hipbot;
|
2015-05-03 14:58:56 +00:00
|
|
|
bitcoin-api = dontDistribute super.bitcoin-api;
|
2015-04-27 18:02:52 +00:00
|
|
|
|
2015-05-05 19:24:27 +00:00
|
|
|
# https://github.com/HugoDaniel/RFC3339/issues/14
|
|
|
|
timerep = dontCheck super.timerep;
|
|
|
|
|
2015-01-10 10:02:37 +00:00
|
|
|
}
|