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: {
|
|
|
|
|
|
|
|
# Some packages need a non-core version of Cabal.
|
2015-01-14 20:27:06 +00:00
|
|
|
Cabal_1_18_1_6 = dontCheck super.Cabal_1_18_1_6;
|
2015-01-15 16:32:58 +00:00
|
|
|
Cabal_1_20_0_3 = dontCheck super.Cabal_1_20_0_3;
|
2015-01-10 19:27:16 +00:00
|
|
|
Cabal_1_22_0_0 = dontCheck super.Cabal_1_22_0_0;
|
|
|
|
cabal-install = dontCheck (super.cabal-install.override { Cabal = self.Cabal_1_22_0_0; });
|
2015-01-07 19:31:32 +00:00
|
|
|
|
|
|
|
# Break infinite recursions.
|
|
|
|
digest = super.digest.override { inherit (pkgs) zlib; };
|
2015-01-12 12:43:06 +00:00
|
|
|
Dust-crypto = dontCheck super.Dust-crypto;
|
|
|
|
hasql-postgres = dontCheck super.hasql-postgres;
|
2015-01-10 19:27:16 +00:00
|
|
|
hspec-expectations = dontCheck super.hspec-expectations;
|
|
|
|
HTTP = dontCheck super.HTTP;
|
|
|
|
mwc-random = dontCheck super.mwc-random;
|
|
|
|
nanospec = dontCheck super.nanospec;
|
|
|
|
options = dontCheck super.options;
|
|
|
|
statistics = dontCheck super.statistics;
|
|
|
|
text = dontCheck super.text;
|
2015-01-07 19:31:32 +00:00
|
|
|
|
|
|
|
# Doesn't compile with lua 5.2.
|
|
|
|
hslua = super.hslua.override { lua = pkgs.lua5_1; };
|
|
|
|
|
2015-01-13 17:35:14 +00:00
|
|
|
# Please also remove optparse-applicative special case from
|
|
|
|
# cabal2nix/hackage2nix.hs when removing the following.
|
2015-01-13 19:43:18 +00:00
|
|
|
elm-make = super.elm-make.override { optparse-applicative = self.optparse-applicative_0_10_0; };
|
|
|
|
elm-package = super.elm-package.override { optparse-applicative = self.optparse-applicative_0_10_0; };
|
|
|
|
|
2015-01-13 19:22:07 +00:00
|
|
|
# https://github.com/acid-state/safecopy/issues/17
|
2015-01-13 18:00:01 +00:00
|
|
|
safecopy = dontCheck super.safecopy;
|
|
|
|
|
2015-01-13 19:22:07 +00:00
|
|
|
# Link the proper version.
|
|
|
|
zeromq4-haskell = super.zeromq4-haskell.override { zeromq = pkgs.zeromq4; };
|
2015-01-13 18:36:36 +00:00
|
|
|
|
2015-01-07 19:31:32 +00:00
|
|
|
# "curl" means pkgs.curl
|
|
|
|
git-annex = super.git-annex.override { inherit (pkgs) git rsync gnupg1 curl lsof openssh which bup perl wget; };
|
|
|
|
|
|
|
|
# Depends on code distributed under a non-free license.
|
2015-01-12 12:43:06 +00:00
|
|
|
bindings-yices = dontDistribute super.bindings-yices;
|
|
|
|
yices = dontDistribute super.yices;
|
|
|
|
yices-easy = dontDistribute super.yices-easy;
|
|
|
|
yices-painless = dontDistribute super.yices-painless;
|
2015-01-07 19:31:32 +00:00
|
|
|
|
|
|
|
# This package overrides the one from pkgs.gnome.
|
|
|
|
gtkglext = super.gtkglext.override { inherit (pkgs.gnome) gtkglext; };
|
|
|
|
|
|
|
|
# The test suite refers to its own library with an invalid version constraint.
|
2015-01-10 19:27:16 +00:00
|
|
|
presburger = dontCheck super.presburger;
|
2015-01-07 19:31:32 +00:00
|
|
|
|
|
|
|
# Won't find it's header files without help.
|
2015-01-10 19:27:16 +00:00
|
|
|
sfml-audio = appendConfigureFlag super.sfml-audio "--extra-include-dirs=${pkgs.openal}/include/AL";
|
2015-01-07 19:31:32 +00:00
|
|
|
|
2015-01-08 15:52:24 +00:00
|
|
|
# https://github.com/haskell/time/issues/23
|
2015-01-10 19:27:16 +00:00
|
|
|
time_1_5_0_1 = dontCheck super.time_1_5_0_1;
|
|
|
|
|
|
|
|
# Doesn't accept modern versions of hashtable.
|
2015-01-15 16:32:58 +00:00
|
|
|
Agda = dontHaddock super.Agda;
|
2015-01-10 19:27:16 +00:00
|
|
|
|
|
|
|
# Cannot compile its own test suite: https://github.com/haskell/network-uri/issues/10.
|
|
|
|
network-uri = dontCheck super.network-uri;
|
|
|
|
|
|
|
|
# The Haddock phase fails for one reason or another.
|
|
|
|
attoparsec-conduit = dontHaddock super.attoparsec-conduit;
|
|
|
|
blaze-builder-conduit = dontHaddock super.blaze-builder-conduit;
|
|
|
|
bytestring-progress = dontHaddock super.bytestring-progress;
|
|
|
|
comonads-fd = dontHaddock super.comonads-fd;
|
|
|
|
comonad-transformers = dontHaddock super.comonad-transformers;
|
2015-01-21 09:22:30 +00:00
|
|
|
deepseq-magic = dontHaddock super.deepseq-magic;
|
2015-01-10 19:27:16 +00:00
|
|
|
diagrams = dontHaddock super.diagrams;
|
|
|
|
either = dontHaddock super.either;
|
|
|
|
gl = dontHaddock super.gl;
|
|
|
|
groupoids = dontHaddock super.groupoids;
|
|
|
|
hamlet = dontHaddock super.hamlet;
|
|
|
|
haste-compiler = dontHaddock super.haste-compiler;
|
|
|
|
HaXml = dontHaddock super.HaXml;
|
|
|
|
HDBC-odbc = dontHaddock super.HDBC-odbc;
|
|
|
|
hoodle-core = dontHaddock super.hoodle-core;
|
|
|
|
hsc3-db = dontHaddock super.hsc3-db;
|
|
|
|
hspec-discover = dontHaddock super.hspec-discover;
|
|
|
|
http-client-conduit = dontHaddock super.http-client-conduit;
|
|
|
|
http-client-multipart = dontHaddock super.http-client-multipart;
|
|
|
|
markdown-unlit = dontHaddock super.markdown-unlit;
|
|
|
|
network-conduit = dontHaddock super.network-conduit;
|
|
|
|
shakespeare-text = dontHaddock super.shakespeare-text;
|
|
|
|
|
|
|
|
# jailbreak doesn't get the job done because the Cabal file uses conditionals a lot.
|
|
|
|
darcs = overrideCabal super.darcs (drv: {
|
2015-01-20 16:28:50 +00:00
|
|
|
doCheck = false; # The test suite won't even start.
|
2015-01-10 19:27:16 +00:00
|
|
|
patchPhase = "sed -i -e 's|random.*==.*|random|' -e 's|text.*>=.*,|text,|' -e s'|terminfo == .*|terminfo|' darcs.cabal";
|
|
|
|
});
|
2015-01-08 15:52:24 +00:00
|
|
|
|
2015-01-11 00:46:30 +00:00
|
|
|
# The test suite imposes too narrow restrictions on the version of
|
|
|
|
# Cabal that can be used to build this package.
|
|
|
|
cabal-test-quickcheck = dontCheck super.cabal-test-quickcheck;
|
2015-01-11 15:30:56 +00:00
|
|
|
|
|
|
|
# https://github.com/techtangents/ablist/issues/1
|
|
|
|
ABList = dontCheck super.ABList;
|
2015-01-11 16:18:22 +00:00
|
|
|
|
2015-01-23 09:48:22 +00:00
|
|
|
# These packages have broken dependencies.
|
|
|
|
ASN1 = dontDistribute super.ASN1; # NewBinary
|
|
|
|
frame-markdown = dontDistribute super.frame-markdown; # frame
|
|
|
|
hails-bin = dontDistribute super.hails-bin; # Hails
|
|
|
|
hbro-contrib = dontDistribute super.hbro-contrib; # hbro
|
2015-01-23 16:15:58 +00:00
|
|
|
lss = markBrokenVersion "0.1.0.0" super.lss; # https://github.com/dbp/lss/issues/2
|
|
|
|
snaplet-lss = markBrokenVersion "0.1.0.0" super.snaplet-lss; # https://github.com/dbp/lss/issues/2
|
2015-01-12 12:43:06 +00:00
|
|
|
|
2015-01-14 15:02:51 +00:00
|
|
|
# https://github.com/haskell/vector/issues/47
|
|
|
|
vector = if pkgs.stdenv.isi686 then appendConfigureFlag super.vector "--ghc-options=-msse2" else super.vector;
|
|
|
|
|
2015-01-17 19:48:50 +00:00
|
|
|
# Does not compile: <http://hydra.cryp.to/build/469842/nixlog/1/raw>.
|
|
|
|
base_4_7_0_2 = markBroken super.base_4_7_0_2;
|
|
|
|
|
|
|
|
# Obsolete: https://github.com/massysett/prednote/issues/1.
|
2015-01-23 09:48:22 +00:00
|
|
|
prednote-test = markBrokenVersion "0.26.0.4" super.prednote-test;
|
2015-01-17 19:48:50 +00:00
|
|
|
|
|
|
|
# Doesn't compile: <http://hydra.cryp.to/build/465891/nixlog/1/raw>.
|
|
|
|
integer-gmp_0_5_1_0 = markBroken super.integer-gmp_0_5_1_0;
|
|
|
|
|
|
|
|
# https://github.com/haskell/bytestring/issues/41
|
|
|
|
bytestring_0_10_4_1 = dontCheck super.bytestring_0_10_4_1;
|
|
|
|
|
2015-01-17 23:49:16 +00:00
|
|
|
# https://github.com/zmthy/http-media/issues/6
|
|
|
|
http-media = dontCheck super.http-media;
|
2015-01-18 20:09:13 +00:00
|
|
|
|
|
|
|
# tests don't compile for some odd reason
|
|
|
|
jwt = dontCheck super.jwt;
|
2015-01-19 13:59:04 +00:00
|
|
|
|
|
|
|
# https://github.com/liamoc/wizards/issues/5
|
|
|
|
wizards = doJailbreak super.wizards;
|
|
|
|
|
|
|
|
# https://github.com/ekmett/trifecta/issues/41
|
2015-01-23 09:48:22 +00:00
|
|
|
trifecta = appendPatch super.trifecta (pkgs.fetchpatch {
|
|
|
|
url = "https://github.com/ekmett/trifecta/pull/40.patch";
|
|
|
|
sha256 = "0qwz83fp0karf6164jykdwsrafq08l6zsdmcdm83xnkcxabgplxv";
|
|
|
|
});
|
2015-01-19 13:59:04 +00:00
|
|
|
|
2015-01-20 11:56:04 +00:00
|
|
|
# https://github.com/NixOS/cabal2nix/issues/136
|
2015-01-21 20:35:51 +00:00
|
|
|
gtk = addBuildDepends super.gtk [pkgs.pkgconfig pkgs.gtk];
|
|
|
|
glib = addBuildDepends super.glib [pkgs.pkgconfig pkgs.glib];
|
2015-01-20 11:56:04 +00:00
|
|
|
|
2015-01-20 15:25:11 +00:00
|
|
|
# https://github.com/jgm/zip-archive/issues/21
|
2015-01-21 09:22:30 +00:00
|
|
|
zip-archive = addBuildTool super.zip-archive pkgs.zip;
|
|
|
|
|
|
|
|
# https://github.com/mvoidex/hsdev/issues/11
|
|
|
|
hsdev = dontHaddock super.hsdev;
|
2015-01-20 15:25:11 +00:00
|
|
|
|
2015-01-20 15:29:54 +00:00
|
|
|
# Upstream notified by e-mail.
|
|
|
|
permutation = dontCheck super.permutation;
|
|
|
|
|
2015-01-20 15:37:55 +00:00
|
|
|
# https://github.com/jputcu/serialport/issues/25
|
|
|
|
serialport = dontCheck super.serialport;
|
|
|
|
|
2015-01-20 16:14:32 +00:00
|
|
|
# https://github.com/kazu-yamamoto/simple-sendfile/issues/17
|
2015-01-20 16:11:52 +00:00
|
|
|
simple-sendfile = dontCheck super.simple-sendfile;
|
|
|
|
|
2015-01-20 16:17:13 +00:00
|
|
|
# Fails no apparent reason. Upstream has been notified by e-mail.
|
|
|
|
assertions = dontCheck super.assertions;
|
|
|
|
|
2015-01-20 16:18:31 +00:00
|
|
|
# https://github.com/vincenthz/tasty-kat/issues/1
|
|
|
|
tasty-kat = dontCheck super.tasty-kat;
|
|
|
|
|
2015-01-20 16:28:50 +00:00
|
|
|
# These packages try to execute non-existent external programs.
|
2015-01-20 16:28:50 +00:00
|
|
|
cmaes = dontCheck super.cmaes; # http://hydra.cryp.to/build/498725/log/raw
|
2015-01-20 16:28:50 +00:00
|
|
|
filestore = dontCheck super.filestore;
|
2015-01-20 22:59:31 +00:00
|
|
|
graceful = dontCheck super.graceful;
|
|
|
|
hakyll = dontCheck super.hakyll;
|
2015-01-20 16:28:50 +00:00
|
|
|
Hclip = dontCheck super.Hclip;
|
2015-01-20 16:22:26 +00:00
|
|
|
HList = dontCheck super.HList;
|
2015-01-20 16:28:50 +00:00
|
|
|
memcached-binary = dontCheck super.memcached-binary;
|
|
|
|
postgresql-simple = dontCheck super.postgresql-simple;
|
|
|
|
snowball = dontCheck super.snowball;
|
|
|
|
xmlgen = dontCheck super.xmlgen;
|
|
|
|
|
2015-01-20 16:28:50 +00:00
|
|
|
# These packages try to access the network.
|
|
|
|
concurrent-dns-cache = dontCheck super.concurrent-dns-cache;
|
|
|
|
dbus = dontCheck super.dbus; # http://hydra.cryp.to/build/498404/log/raw
|
2015-01-21 09:22:30 +00:00
|
|
|
hasql = dontCheck super.hasql; # http://hydra.cryp.to/build/502489/nixlog/4/raw
|
2015-01-20 21:56:30 +00:00
|
|
|
holy-project = dontCheck super.holy-project; # http://hydra.cryp.to/build/502002/nixlog/1/raw
|
2015-01-20 16:28:50 +00:00
|
|
|
http-client = dontCheck super.http-client; # http://hydra.cryp.to/build/501430/nixlog/1/raw
|
2015-01-20 21:56:30 +00:00
|
|
|
http-conduit = dontCheck super.http-conduit; # http://hydra.cryp.to/build/501966/nixlog/1/raw
|
2015-01-20 16:28:50 +00:00
|
|
|
js-jquery = dontCheck super.js-jquery;
|
2015-01-20 21:56:30 +00:00
|
|
|
marmalade-upload = dontCheck super.marmalade-upload; # http://hydra.cryp.to/build/501904/nixlog/1/raw
|
2015-01-21 09:22:30 +00:00
|
|
|
raven-haskell = dontCheck super.raven-haskell; # http://hydra.cryp.to/build/502053/log/raw
|
2015-01-20 16:28:50 +00:00
|
|
|
riak = dontCheck super.riak; # http://hydra.cryp.to/build/498763/log/raw
|
2015-01-20 21:56:30 +00:00
|
|
|
stackage = dontCheck super.stackage; # http://hydra.cryp.to/build/501867/nixlog/1/raw
|
2015-01-20 16:28:50 +00:00
|
|
|
warp = dontCheck super.warp; # http://hydra.cryp.to/build/501073/nixlog/5/raw
|
2015-01-20 21:56:30 +00:00
|
|
|
wreq = dontCheck super.wreq; # http://hydra.cryp.to/build/501895/nixlog/1/raw
|
2015-01-20 16:22:26 +00:00
|
|
|
|
|
|
|
# https://github.com/NICTA/digit/issues/3
|
|
|
|
digit = dontCheck super.digit;
|
|
|
|
|
2015-01-20 16:28:50 +00:00
|
|
|
# Fails for non-obvious reasons while attempting to use doctest.
|
|
|
|
search = dontCheck super.search;
|
|
|
|
|
|
|
|
# https://github.com/ekmett/structures/issues/3
|
|
|
|
structures = dontCheck super.structures;
|
|
|
|
|
|
|
|
# Tries to mess with extended POSIX attributes, but can't in our chroot environment.
|
|
|
|
xattr = dontCheck super.xattr;
|
2015-01-20 16:22:26 +00:00
|
|
|
|
2015-01-20 16:28:50 +00:00
|
|
|
# Disable test suites to fix the build.
|
|
|
|
acme-year = dontCheck super.acme-year; # http://hydra.cryp.to/build/497858/log/raw
|
|
|
|
aeson-lens = dontCheck super.aeson-lens; # http://hydra.cryp.to/build/496769/log/raw
|
|
|
|
apache-md5 = dontCheck super.apache-md5; # http://hydra.cryp.to/build/498709/nixlog/1/raw
|
|
|
|
app-settings = dontCheck super.app-settings; # http://hydra.cryp.to/build/497327/log/raw
|
2015-01-20 21:56:30 +00:00
|
|
|
aws = dontCheck super.aws; # needs aws credentials
|
2015-01-21 09:22:30 +00:00
|
|
|
aws-kinesis = dontCheck super.aws-kinesis; # needs aws credentials for testing
|
2015-01-20 16:28:50 +00:00
|
|
|
binary-protocol = dontCheck super.binary-protocol; # http://hydra.cryp.to/build/499749/log/raw
|
|
|
|
bindings-GLFW = dontCheck super.bindings-GLFW; # http://hydra.cryp.to/build/497379/log/raw
|
|
|
|
bits = dontCheck super.bits; # http://hydra.cryp.to/build/500239/log/raw
|
|
|
|
bloodhound = dontCheck super.bloodhound;
|
2015-01-20 21:56:30 +00:00
|
|
|
buildwrapper = dontCheck super.buildwrapper;
|
2015-01-20 16:28:50 +00:00
|
|
|
burst-detection = dontCheck super.burst-detection; # http://hydra.cryp.to/build/496948/log/raw
|
|
|
|
cabal-bounds = dontCheck super.cabal-bounds; # http://hydra.cryp.to/build/496935/nixlog/1/raw
|
|
|
|
cabal-meta = dontCheck super.cabal-meta; # http://hydra.cryp.to/build/497892/log/raw
|
|
|
|
cautious-file = dontCheck super.cautious-file; # http://hydra.cryp.to/build/499730/log/raw
|
|
|
|
cjk = dontCheck super.cjk;
|
|
|
|
command-qq = dontCheck super.command-qq; # http://hydra.cryp.to/build/499042/log/raw
|
2015-01-20 21:56:30 +00:00
|
|
|
conduit-connection = dontCheck super.conduit-connection;
|
2015-01-20 16:28:50 +00:00
|
|
|
craftwerk = dontCheck super.craftwerk;
|
|
|
|
damnpacket = dontCheck super.damnpacket; # http://hydra.cryp.to/build/496923/log
|
|
|
|
Deadpan-DDP = dontCheck super.Deadpan-DDP; # http://hydra.cryp.to/build/496418/log/raw
|
2015-01-20 21:56:30 +00:00
|
|
|
DigitalOcean = dontCheck super.DigitalOcean;
|
2015-01-20 16:28:50 +00:00
|
|
|
directory-layout = dontCheck super.directory-layout;
|
|
|
|
docopt = dontCheck super.docopt; # http://hydra.cryp.to/build/499172/log/raw
|
|
|
|
dom-selector = dontCheck super.dom-selector; # http://hydra.cryp.to/build/497670/log/raw
|
|
|
|
dotfs = dontCheck super.dotfs; # http://hydra.cryp.to/build/498599/log/raw
|
|
|
|
DRBG = dontCheck super.DRBG; # http://hydra.cryp.to/build/498245/nixlog/1/raw
|
|
|
|
either-unwrap = dontCheck super.either-unwrap; # http://hydra.cryp.to/build/498782/log/raw
|
2015-01-20 21:56:30 +00:00
|
|
|
elm-repl = dontCheck super.elm-repl; # http://hydra.cryp.to/build/501878/nixlog/1/raw
|
|
|
|
etcd = dontCheck super.etcd;
|
|
|
|
fb = dontCheck super.fb; # needs credentials for Facebook
|
2015-01-20 16:28:50 +00:00
|
|
|
fptest = dontCheck super.fptest; # http://hydra.cryp.to/build/499124/log/raw
|
|
|
|
ghc-events = dontCheck super.ghc-events; # http://hydra.cryp.to/build/498226/log/raw
|
|
|
|
ghc-events-parallel = dontCheck super.ghc-events-parallel; # http://hydra.cryp.to/build/496828/log/raw
|
|
|
|
ghcid = dontCheck super.ghcid;
|
|
|
|
ghc-imported-from = dontCheck super.ghc-imported-from;
|
|
|
|
ghc-mod = dontCheck super.ghc-mod; # http://hydra.cryp.to/build/499674/log/raw
|
|
|
|
ghc-parmake = dontCheck super.ghc-parmake;
|
|
|
|
gitlib-cmdline = dontCheck super.gitlib-cmdline;
|
|
|
|
git-vogue = dontCheck super.git-vogue;
|
|
|
|
GLFW-b = dontCheck super.GLFW-b;
|
|
|
|
hackport = dontCheck super.hackport;
|
|
|
|
hadoop-formats = dontCheck super.hadoop-formats;
|
|
|
|
haeredes = dontCheck super.haeredes;
|
|
|
|
hashed-storage = dontCheck super.hashed-storage;
|
|
|
|
hashring = dontCheck super.hashring;
|
|
|
|
hath = dontCheck super.hath;
|
2015-01-21 09:22:30 +00:00
|
|
|
haxl-facebook = dontCheck super.haxl-facebook; # needs facebook credentials for testing
|
2015-01-20 16:28:50 +00:00
|
|
|
hdbi-postgresql = dontCheck super.hdbi-postgresql;
|
|
|
|
hedis = dontCheck super.hedis;
|
|
|
|
hedis-pile = dontCheck super.hedis-pile;
|
|
|
|
hedis-tags = dontCheck super.hedis-tags;
|
|
|
|
hedn = dontCheck super.hedn;
|
|
|
|
hgdbmi = dontCheck super.hgdbmi;
|
|
|
|
hi = dontCheck super.hi;
|
|
|
|
hmatrix-tests = dontCheck super.hmatrix-tests;
|
|
|
|
hPDB-examples = dontCheck super.hPDB-examples;
|
|
|
|
hquery = dontCheck super.hquery;
|
|
|
|
hs2048 = dontCheck super.hs2048;
|
|
|
|
hsbencher = dontCheck super.hsbencher;
|
|
|
|
hsexif = dontCheck super.hsexif;
|
|
|
|
hspec-server = dontCheck super.hspec-server;
|
|
|
|
HTF = dontCheck super.HTF;
|
|
|
|
htsn = dontCheck super.htsn;
|
|
|
|
htsn-import = dontCheck super.htsn-import;
|
|
|
|
http2 = dontCheck super.http2;
|
|
|
|
http-client-openssl = dontCheck super.http-client-openssl;
|
2015-01-20 21:56:30 +00:00
|
|
|
http-client-tls = dontCheck super.http-client-tls;
|
2015-01-20 16:28:50 +00:00
|
|
|
ihaskell = dontCheck super.ihaskell;
|
|
|
|
influxdb = dontCheck super.influxdb;
|
|
|
|
itanium-abi = dontCheck super.itanium-abi;
|
2015-01-20 21:56:30 +00:00
|
|
|
katt = dontCheck super.katt;
|
2015-01-20 16:28:50 +00:00
|
|
|
language-slice = dontCheck super.language-slice;
|
|
|
|
lensref = dontCheck super.lensref;
|
|
|
|
liquidhaskell = dontCheck super.liquidhaskell;
|
|
|
|
lvmrun = dontCheck super.lvmrun;
|
|
|
|
memcache = dontCheck super.memcache;
|
|
|
|
milena = dontCheck super.milena;
|
|
|
|
nats-queue = dontCheck super.nats-queue;
|
|
|
|
netpbm = dontCheck super.netpbm;
|
|
|
|
network-dbus = dontCheck super.network-dbus;
|
|
|
|
notcpp = dontCheck super.notcpp;
|
|
|
|
ntp-control = dontCheck super.ntp-control;
|
|
|
|
numerals = dontCheck super.numerals;
|
|
|
|
opaleye = dontCheck super.opaleye;
|
|
|
|
openpgp = dontCheck super.openpgp;
|
|
|
|
optional = dontCheck super.optional;
|
|
|
|
os-release = dontCheck super.os-release;
|
2015-01-20 21:56:30 +00:00
|
|
|
pandoc-citeproc = dontCheck super.pandoc-citeproc;
|
2015-01-20 16:28:50 +00:00
|
|
|
persistent-redis = dontCheck super.persistent-redis;
|
|
|
|
pipes-extra = dontCheck super.pipes-extra;
|
|
|
|
pipes-websockets = dontCheck super.pipes-websockets;
|
2015-01-21 09:22:30 +00:00
|
|
|
postgresql-binary = dontCheck super.postgresql-binary;# needs a running postgresql server
|
2015-01-20 16:28:50 +00:00
|
|
|
postgresql-simple-migration = dontCheck super.postgresql-simple-migration;
|
|
|
|
process-streaming = dontCheck super.process-streaming;
|
|
|
|
punycode = dontCheck super.punycode;
|
|
|
|
pwstore-cli = dontCheck super.pwstore-cli;
|
|
|
|
quantities = dontCheck super.quantities;
|
|
|
|
redis-io = dontCheck super.redis-io;
|
|
|
|
rethinkdb = dontCheck super.rethinkdb;
|
|
|
|
Rlang-QQ = dontCheck super.Rlang-QQ;
|
|
|
|
sai-shape-syb = dontCheck super.sai-shape-syb;
|
|
|
|
scp-streams = dontCheck super.scp-streams;
|
|
|
|
separated = dontCheck super.separated;
|
|
|
|
shadowsocks = dontCheck super.shadowsocks;
|
|
|
|
shake-language-c = dontCheck super.shake-language-c;
|
|
|
|
static-resources = dontCheck super.static-resources;
|
2015-01-20 21:56:30 +00:00
|
|
|
strive = dontCheck super.strive; # fails its own hlint test with tons of warnings
|
2015-01-20 16:28:50 +00:00
|
|
|
svndump = dontCheck super.svndump;
|
|
|
|
thumbnail-plus = dontCheck super.thumbnail-plus;
|
|
|
|
tickle = dontCheck super.tickle;
|
|
|
|
tpdb = dontCheck super.tpdb;
|
|
|
|
translatable-intset = dontCheck super.translatable-intset;
|
|
|
|
ua-parser = dontCheck super.ua-parser;
|
|
|
|
unagi-chan = dontCheck super.unagi-chan;
|
2015-01-20 21:56:30 +00:00
|
|
|
wai-app-file-cgi = dontCheck super.wai-app-file-cgi;
|
2015-01-20 16:28:50 +00:00
|
|
|
wai-logger = dontCheck super.wai-logger;
|
|
|
|
WebBits = dontCheck super.WebBits; # http://hydra.cryp.to/build/499604/log/raw
|
2015-01-20 21:56:30 +00:00
|
|
|
webdriver-angular = dontCheck super.webdriver-angular;
|
2015-01-20 16:28:50 +00:00
|
|
|
webdriver = dontCheck super.webdriver;
|
|
|
|
xcffib = dontCheck super.xcffib;
|
|
|
|
xsd = dontCheck super.xsd;
|
|
|
|
|
|
|
|
# https://github.com/athanclark/dag/issues/2
|
|
|
|
dag = addBuildTool super.dag self.Cabal_1_22_0_0; # http://hydra.cryp.to/build/498554/log/raw
|
|
|
|
|
2015-01-20 21:52:08 +00:00
|
|
|
# The build fails with the most recent version of c2hs.
|
|
|
|
ncurses = super.ncurses.override { c2hs = self.c2hs_0_20_1; };
|
|
|
|
|
2015-01-20 21:56:30 +00:00
|
|
|
# Needs access to locale data, but looks for it in the wrong place.
|
|
|
|
scholdoc-citeproc = dontCheck super.scholdoc-citeproc;
|
|
|
|
|
2015-01-20 23:10:12 +00:00
|
|
|
# These test suites run for ages, even on a fast machine. This is nuts.
|
|
|
|
Random123 = dontCheck super.Random123;
|
|
|
|
systemd = dontCheck super.systemd;
|
|
|
|
|
2015-01-21 09:22:30 +00:00
|
|
|
# https://github.com/eli-frey/cmdtheline/issues/28
|
|
|
|
cmdtheline = dontCheck super.cmdtheline;
|
|
|
|
|
|
|
|
# https://github.com/bos/snappy/issues/1
|
|
|
|
snappy = dontCheck super.snappy;
|
|
|
|
|
|
|
|
# Needs llvm to compile.
|
|
|
|
bytestring-arbitrary = addBuildTool super.bytestring-arbitrary pkgs.llvm;
|
|
|
|
|
|
|
|
# https://github.com/chrisdone/hindent/issues/83
|
|
|
|
hindent = dontCheck super.hindent;
|
|
|
|
|
|
|
|
# https://github.com/begriffs/postgrest/issues/127
|
|
|
|
postgrest = dontDistribute super.postgrest;
|
|
|
|
|
2015-01-21 22:19:05 +00:00
|
|
|
# Needs older versions of its dependencies.
|
|
|
|
structured-haskell-mode = (dontJailbreak super.structured-haskell-mode).override {
|
|
|
|
haskell-src-exts = self.haskell-src-exts_1_15_0_1; # https://github.com/chrisdone/structured-haskell-mode/issues/90
|
|
|
|
};
|
|
|
|
|
2015-01-22 13:09:24 +00:00
|
|
|
# Expect to find sendmail(1) in $PATH.
|
|
|
|
mime-mail = appendConfigureFlag super.mime-mail "--ghc-option=-DMIME_MAIL_SENDMAIL_PATH=\"sendmail\"";
|
|
|
|
|
|
|
|
# Help the test suite find system timezone data.
|
|
|
|
tz = overrideCabal super.tz (drv: { preConfigure = "export TZDIR=${pkgs.tzdata}/share/zoneinfo"; });
|
|
|
|
|
2015-01-22 16:24:01 +00:00
|
|
|
# https://ghc.haskell.org/trac/ghc/ticket/9625
|
|
|
|
vty = dontCheck super.vty;
|
|
|
|
|
2015-01-22 16:30:05 +00:00
|
|
|
# https://github.com/vincenthz/hs-crypto-pubkey/issues/20
|
|
|
|
crypto-pubkey = dontCheck super.crypto-pubkey;
|
|
|
|
|
2015-01-23 09:48:22 +00:00
|
|
|
# https://github.com/rrnewton/haskell-lockfree/issues/44
|
|
|
|
chaselev-deque = markBrokenVersion "0.5.0.3" super.chaselev-deque;
|
|
|
|
|
2015-01-23 10:52:08 +00:00
|
|
|
} // {
|
|
|
|
|
|
|
|
# Not on Hackage.
|
2015-01-10 09:03:53 +00:00
|
|
|
cabal2nix = self.mkDerivation {
|
|
|
|
pname = "cabal2nix";
|
|
|
|
version = "2.0";
|
|
|
|
src = pkgs.fetchgit {
|
2015-01-17 19:54:31 +00:00
|
|
|
url = "http://github.com/NixOS/cabal2nix.git";
|
2015-01-21 15:55:28 +00:00
|
|
|
sha256 = "5cc98f530303a82885e2f23d2c83f67f1a3767bfdd5ed3340e45858f1a0f04e1";
|
|
|
|
rev = "6a445468030b064e4f71b43c269ba506e7e2f779";
|
2015-01-10 09:03:53 +00:00
|
|
|
};
|
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = with self; [
|
2015-01-16 05:04:00 +00:00
|
|
|
aeson base bytestring Cabal containers deepseq deepseq-generics
|
2015-01-17 19:54:31 +00:00
|
|
|
directory filepath hackage-db monad-par monad-par-extras mtl pretty
|
|
|
|
prettyclass process QuickCheck regex-posix SHA split transformers
|
|
|
|
utf8-string
|
|
|
|
];
|
|
|
|
testDepends = with self; [
|
|
|
|
aeson base bytestring Cabal containers deepseq deepseq-generics
|
|
|
|
directory doctest filepath hackage-db hspec monad-par
|
|
|
|
monad-par-extras mtl pretty prettyclass process QuickCheck
|
|
|
|
regex-posix SHA split transformers utf8-string
|
2015-01-10 09:03:53 +00:00
|
|
|
];
|
|
|
|
homepage = "http://github.com/NixOS/cabal2nix";
|
|
|
|
description = "Convert Cabal files into Nix build instructions";
|
|
|
|
license = pkgs.stdenv.lib.licenses.bsd3;
|
|
|
|
};
|
2015-01-17 19:54:31 +00:00
|
|
|
|
2015-01-10 09:03:53 +00:00
|
|
|
}
|