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: {
|
|
|
|
|
2016-11-16 12:42:54 +00:00
|
|
|
# Some Hackage packages reference this attribute, which exists only in the
|
|
|
|
# GHCJS package set. We provide a dummy version here to fix potential
|
|
|
|
# evaluation errors.
|
|
|
|
ghcjs-base = null;
|
|
|
|
|
2015-01-07 19:31:32 +00:00
|
|
|
# Some packages need a non-core version of Cabal.
|
2016-12-08 10:51:30 +00:00
|
|
|
cabal-install = super.cabal-install.overrideScope (self: super: { Cabal = self.Cabal_1_24_2_0; });
|
2015-01-07 19:31:32 +00:00
|
|
|
|
2015-08-03 14:07:07 +01:00
|
|
|
# Link statically to avoid runtime dependency on GHC.
|
2016-10-19 14:11:51 +01:00
|
|
|
jailbreak-cabal = (disableSharedExecutables super.jailbreak-cabal).override { Cabal = self.Cabal_1_20_0_4; };
|
2015-08-03 14:07:07 +01:00
|
|
|
|
2015-08-06 13:02:12 +01:00
|
|
|
# Apply NixOS-specific patches.
|
|
|
|
ghc-paths = appendPatch super.ghc-paths ./patches/ghc-paths-nix.patch;
|
|
|
|
|
2016-12-08 16:32:27 +00:00
|
|
|
# enable using a local hoogle with extra packagages in the database
|
|
|
|
# nix-shell -p "haskellPackages.hoogleLocal (with haskellPackages; [ mtl lens ])"
|
|
|
|
# $ hoogle server
|
|
|
|
hoogleLocal = { packages ? [] }: self.callPackage ./hoogle.nix { inherit packages; };
|
|
|
|
|
2015-01-07 19:31:32 +00:00
|
|
|
# Break infinite recursions.
|
2015-10-04 14:59:23 +01:00
|
|
|
clock = dontCheck super.clock;
|
2015-01-12 12:43:06 +00:00
|
|
|
Dust-crypto = dontCheck super.Dust-crypto;
|
|
|
|
hasql-postgres = dontCheck super.hasql-postgres;
|
2015-09-16 13:26:03 +01:00
|
|
|
hspec-expectations = dontCheck super.hspec-expectations;
|
2015-09-16 13:46:42 +01:00
|
|
|
hspec = super.hspec.override { stringbuilder = dontCheck super.stringbuilder; };
|
2015-01-10 19:27:16 +00:00
|
|
|
HTTP = dontCheck super.HTTP;
|
2015-09-16 14:46:59 +01:00
|
|
|
nanospec = dontCheck super.nanospec;
|
2015-01-10 19:27:16 +00:00
|
|
|
options = dontCheck super.options;
|
|
|
|
statistics = dontCheck super.statistics;
|
2016-02-26 17:38:15 +00:00
|
|
|
c2hs = dontCheck super.c2hs;
|
2016-04-19 13:21:06 +01:00
|
|
|
|
|
|
|
# fix errors caused by hardening flags
|
2016-09-14 18:05:32 +01:00
|
|
|
epanet-haskell = disableHardening super.epanet-haskell ["format"];
|
2015-01-07 19:31:32 +00:00
|
|
|
|
2016-08-15 13:05:55 +01:00
|
|
|
# This test keeps being aborted because it runs too quietly for too long
|
|
|
|
Lazy-Pbkdf2 = if pkgs.stdenv.isi686 then dontCheck super.Lazy-Pbkdf2 else super.Lazy-Pbkdf2;
|
|
|
|
|
2015-03-18 10:36:24 +00:00
|
|
|
# Use the default version of mysql to build this package (which is actually mariadb).
|
2017-01-04 15:41:30 +00:00
|
|
|
# test phase requires networking
|
|
|
|
mysql = dontCheck (super.mysql.override { mysql = pkgs.mysql.lib; });
|
2015-03-18 10:36:24 +00:00
|
|
|
|
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
|
|
|
|
2016-09-08 13:54:36 +01:00
|
|
|
# The Hackage tarball is purposefully broken. Mr. Hess wants people to build
|
|
|
|
# his package from the Git repo because that is, like, better!
|
|
|
|
git-annex = ((overrideCabal super.git-annex (drv: {
|
2016-06-07 17:10:08 +01:00
|
|
|
src = pkgs.fetchFromGitHub {
|
|
|
|
owner = "joeyh";
|
|
|
|
repo = "git-annex";
|
2016-12-12 13:37:56 +00:00
|
|
|
sha256 = "1a87kllzxmjwkz5arq4c3bp7qfkabn0arbli6s6i68fkgm19s4gr";
|
2016-06-07 17:10:08 +01:00
|
|
|
rev = drv.version;
|
|
|
|
};
|
2016-09-08 13:54:36 +01:00
|
|
|
})).overrideScope (self: super: {
|
2016-12-20 13:08:15 +00:00
|
|
|
# https://github.com/yesodweb/yesod/issues/1324
|
|
|
|
yesod-persistent = self.yesod-persistent_1_4_1_1;
|
2016-09-08 13:54:36 +01:00
|
|
|
# https://github.com/prowdsponsor/esqueleto/issues/137
|
|
|
|
persistent = self.persistent_2_2_4_1;
|
|
|
|
persistent-template = self.persistent-template_2_1_8_1;
|
|
|
|
persistent-sqlite = self.persistent-sqlite_2_2_1;
|
2016-06-07 17:10:08 +01:00
|
|
|
})).override {
|
2015-02-04 11:57:20 +00:00
|
|
|
dbus = if pkgs.stdenv.isLinux then self.dbus else null;
|
|
|
|
fdo-notify = if pkgs.stdenv.isLinux then self.fdo-notify else null;
|
|
|
|
hinotify = if pkgs.stdenv.isLinux then self.hinotify else self.fsnotify;
|
|
|
|
};
|
2015-01-07 19:31:32 +00:00
|
|
|
|
2015-02-25 13:26:50 +00:00
|
|
|
# CUDA needs help finding the SDK headers and libraries.
|
|
|
|
cuda = overrideCabal super.cuda (drv: {
|
|
|
|
extraLibraries = (drv.extraLibraries or []) ++ [pkgs.linuxPackages.nvidia_x11];
|
|
|
|
configureFlags = (drv.configureFlags or []) ++
|
|
|
|
pkgs.lib.optional pkgs.stdenv.is64bit "--extra-lib-dirs=${pkgs.cudatoolkit}/lib64" ++ [
|
|
|
|
"--extra-lib-dirs=${pkgs.cudatoolkit}/lib"
|
2015-09-04 11:29:22 +01:00
|
|
|
"--extra-include-dirs=${pkgs.cudatoolkit}/include"
|
2015-02-25 13:26:50 +00:00
|
|
|
];
|
|
|
|
preConfigure = ''
|
|
|
|
unset CC # unconfuse the haskell-cuda configure script
|
|
|
|
sed -i -e 's|/usr/local/cuda|${pkgs.cudatoolkit}|g' configure
|
|
|
|
'';
|
|
|
|
});
|
|
|
|
|
2016-12-01 18:52:16 +00:00
|
|
|
# jni needs help finding libjvm.so because it's in a weird location.
|
|
|
|
jni = overrideCabal super.jni (drv: {
|
|
|
|
preConfigure = ''
|
|
|
|
local libdir=( "${pkgs.jdk}/lib/openjdk/jre/lib/"*"/server" )
|
|
|
|
configureFlags+=" --extra-lib-dir=''${libdir[0]}"
|
|
|
|
'';
|
|
|
|
});
|
|
|
|
|
2015-03-04 14:41:09 +00:00
|
|
|
# The package doesn't know about the AL include hierarchy.
|
2015-03-14 13:16:39 +00:00
|
|
|
# https://github.com/phaazon/al/issues/1
|
2015-03-14 13:56:48 +00:00
|
|
|
al = appendConfigureFlag super.al "--extra-include-dirs=${pkgs.openal}/include/AL";
|
2015-03-04 14:41:09 +00:00
|
|
|
|
2015-09-02 11:27:36 +01:00
|
|
|
# https://github.com/froozen/kademlia/issues/2
|
|
|
|
kademlia = dontCheck super.kademlia;
|
|
|
|
|
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-02-03 08:47:51 +00:00
|
|
|
|
|
|
|
hzk = overrideCabal super.hzk (drv: {
|
|
|
|
preConfigure = "sed -i -e /include-dirs/d hzk.cabal";
|
|
|
|
configureFlags = "--extra-include-dirs=${pkgs.zookeeper_mt}/include/zookeeper";
|
|
|
|
doCheck = false;
|
|
|
|
});
|
2015-02-04 11:47:26 +00:00
|
|
|
|
2015-02-03 08:44:35 +00:00
|
|
|
haskakafka = overrideCabal super.haskakafka (drv: {
|
|
|
|
preConfigure = "sed -i -e /extra-lib-dirs/d -e /include-dirs/d haskakafka.cabal";
|
|
|
|
configureFlags = "--extra-include-dirs=${pkgs.rdkafka}/include/librdkafka";
|
|
|
|
doCheck = false;
|
2015-12-08 17:20:16 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
# Depends on broken "lss" package.
|
|
|
|
snaplet-lss = dontDistribute super.snaplet-lss;
|
|
|
|
|
|
|
|
# Depends on broken "NewBinary" package.
|
|
|
|
ASN1 = dontDistribute super.ASN1;
|
|
|
|
|
|
|
|
# Depends on broken "frame" package.
|
|
|
|
frame-markdown = dontDistribute super.frame-markdown;
|
|
|
|
|
|
|
|
# Depends on broken "Elm" package.
|
|
|
|
hakyll-elm = dontDistribute super.hakyll-elm;
|
|
|
|
haskelm = dontDistribute super.haskelm;
|
|
|
|
snap-elm = dontDistribute super.snap-elm;
|
|
|
|
|
|
|
|
# Depends on broken "hails" package.
|
|
|
|
hails-bin = dontDistribute super.hails-bin;
|
2015-01-07 19:31:32 +00:00
|
|
|
|
2015-01-19 17:13:51 +00:00
|
|
|
# Foreign dependency name clashes with another Haskell package.
|
|
|
|
libarchive-conduit = super.libarchive-conduit.override { archive = pkgs.libarchive; };
|
|
|
|
|
2015-09-16 09:24:23 +01:00
|
|
|
# Switch levmar build to openblas.
|
2015-06-09 19:48:36 +01:00
|
|
|
bindings-levmar = overrideCabal super.bindings-levmar (drv: {
|
|
|
|
preConfigure = ''
|
|
|
|
sed -i bindings-levmar.cabal \
|
|
|
|
-e 's,extra-libraries: lapack blas,extra-libraries: openblas,'
|
|
|
|
'';
|
2015-06-18 18:58:16 +01:00
|
|
|
extraLibraries = [ pkgs.openblasCompat ];
|
2015-06-09 19:48:36 +01:00
|
|
|
});
|
|
|
|
|
2015-01-10 19:27:16 +00:00
|
|
|
# The Haddock phase fails for one reason or another.
|
2015-06-25 11:40:39 +01:00
|
|
|
acme-one = dontHaddock super.acme-one;
|
2015-01-10 19:27:16 +00:00
|
|
|
attoparsec-conduit = dontHaddock super.attoparsec-conduit;
|
2015-06-02 09:14:04 +01:00
|
|
|
base-noprelude = dontHaddock super.base-noprelude;
|
2015-01-10 19:27:16 +00:00
|
|
|
blaze-builder-conduit = dontHaddock super.blaze-builder-conduit;
|
2015-04-21 18:26:13 +01:00
|
|
|
BNFC-meta = dontHaddock super.BNFC-meta;
|
2015-01-10 19:27:16 +00:00
|
|
|
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;
|
2015-03-24 15:10:17 +00:00
|
|
|
feldspar-signal = dontHaddock super.feldspar-signal; # https://github.com/markus-git/feldspar-signal/issues/1
|
2015-01-10 19:27:16 +00:00
|
|
|
gl = dontHaddock super.gl;
|
|
|
|
groupoids = dontHaddock super.groupoids;
|
|
|
|
hamlet = dontHaddock super.hamlet;
|
|
|
|
HaXml = dontHaddock super.HaXml;
|
|
|
|
hoodle-core = dontHaddock super.hoodle-core;
|
|
|
|
hsc3-db = dontHaddock super.hsc3-db;
|
|
|
|
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;
|
2015-03-05 16:53:33 +00:00
|
|
|
shakespeare-js = dontHaddock super.shakespeare-js;
|
2015-01-10 19:27:16 +00:00
|
|
|
shakespeare-text = dontHaddock super.shakespeare-text;
|
2016-10-31 15:23:16 +00:00
|
|
|
swagger = dontHaddock super.swagger; # http://hydra.cryp.to/build/2035868/nixlog/1/raw
|
2015-02-12 20:27:15 +00:00
|
|
|
wai-test = dontHaddock super.wai-test;
|
2015-03-04 10:58:47 +00:00
|
|
|
zlib-conduit = dontHaddock super.zlib-conduit;
|
2015-01-10 19:27:16 +00:00
|
|
|
|
2015-04-27 18:57:02 +01:00
|
|
|
# https://github.com/massysett/rainbox/issues/1
|
|
|
|
rainbox = dontCheck super.rainbox;
|
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-14 15:02:51 +00:00
|
|
|
# https://github.com/haskell/vector/issues/47
|
2016-10-01 10:11:11 +01:00
|
|
|
# https://github.com/haskell/vector/issues/138
|
|
|
|
vector = doJailbreak (if pkgs.stdenv.isi686 then appendConfigureFlag super.vector "--ghc-options=-msse2" else super.vector);
|
2015-01-14 15:02:51 +00:00
|
|
|
|
2016-10-01 10:11:11 +01:00
|
|
|
# Fix Darwin build.
|
2015-10-27 21:49:08 +00:00
|
|
|
halive = if pkgs.stdenv.isDarwin
|
|
|
|
then addBuildDepend super.halive pkgs.darwin.apple_sdk.frameworks.AppKit
|
|
|
|
else super.halive;
|
|
|
|
|
2016-10-27 23:10:39 +01:00
|
|
|
# Hakyll's tests are broken on Darwin (3 failures); and they require util-linux
|
|
|
|
hakyll = if pkgs.stdenv.isDarwin
|
|
|
|
then dontCheck (overrideCabal super.hakyll (drv: {
|
|
|
|
testToolDepends = [];
|
|
|
|
}))
|
|
|
|
else super.hakyll;
|
|
|
|
|
2016-12-05 01:36:42 +00:00
|
|
|
# Heist's test suite requires system pandoc
|
|
|
|
heist = overrideCabal super.heist (drv: {
|
|
|
|
testToolDepends = [pkgs.pandoc];
|
|
|
|
});
|
|
|
|
|
2015-02-12 20:27:15 +00:00
|
|
|
# cabal2nix likes to generate dependencies on hinotify when hfsevents is really required
|
2015-08-08 08:35:26 +01:00
|
|
|
# on darwin: https://github.com/NixOS/cabal2nix/issues/146.
|
2015-08-08 09:54:37 +01:00
|
|
|
hinotify = if pkgs.stdenv.isDarwin then self.hfsevents else super.hinotify;
|
2015-06-20 23:29:42 +01:00
|
|
|
|
2015-02-12 20:27:15 +00:00
|
|
|
# FSEvents API is very buggy and tests are unreliable. See
|
2015-08-25 07:41:14 +01:00
|
|
|
# http://openradar.appspot.com/10207999 and similar issues.
|
|
|
|
# https://github.com/haskell-fswatch/hfsnotify/issues/62
|
2016-08-06 16:28:50 +01:00
|
|
|
fsnotify = if pkgs.stdenv.isDarwin
|
|
|
|
then addBuildDepend (dontCheck super.fsnotify) pkgs.darwin.apple_sdk.frameworks.Cocoa
|
|
|
|
else dontCheck super.fsnotify;
|
2015-02-12 20:27:15 +00:00
|
|
|
|
2015-06-21 08:57:41 +01:00
|
|
|
# the system-fileio tests use canonicalizePath, which fails in the sandbox
|
|
|
|
system-fileio = if pkgs.stdenv.isDarwin then dontCheck super.system-fileio else super.system-fileio;
|
|
|
|
|
2015-02-12 20:27:15 +00:00
|
|
|
# Prevents needing to add security_tool as a build tool to all of x509-system's
|
|
|
|
# dependencies.
|
2015-07-01 00:11:16 +01:00
|
|
|
x509-system = if pkgs.stdenv.isDarwin && !pkgs.stdenv.cc.nativeLibc
|
|
|
|
then let inherit (pkgs.darwin) security_tool;
|
|
|
|
in pkgs.lib.overrideDerivation (addBuildDepend super.x509-system security_tool) (drv: {
|
2015-08-06 13:10:48 +01:00
|
|
|
postPatch = (drv.postPatch or "") + ''
|
2015-07-01 00:11:16 +01:00
|
|
|
substituteInPlace System/X509/MacOS.hs --replace security ${security_tool}/bin/security
|
|
|
|
'';
|
|
|
|
})
|
|
|
|
else super.x509-system;
|
2015-02-12 20:27:15 +00:00
|
|
|
|
2015-06-21 08:57:50 +01:00
|
|
|
double-conversion = if !pkgs.stdenv.isDarwin
|
2016-02-05 20:26:01 +00:00
|
|
|
then addExtraLibrary super.double-conversion pkgs.stdenv.cc.cc.lib
|
|
|
|
else addExtraLibrary (overrideCabal super.double-conversion (drv:
|
2015-06-21 08:57:50 +01:00
|
|
|
{
|
2015-08-06 13:10:48 +01:00
|
|
|
postPatch = ''
|
2015-06-21 08:57:50 +01:00
|
|
|
substituteInPlace double-conversion.cabal --replace stdc++ c++
|
|
|
|
'';
|
2015-10-28 21:19:15 +00:00
|
|
|
})) pkgs.libcxx;
|
2015-06-21 08:57:50 +01:00
|
|
|
|
2016-06-16 00:03:22 +01:00
|
|
|
inline-c-cpp = if !pkgs.stdenv.isDarwin
|
|
|
|
then super.inline-c-cpp
|
|
|
|
else addExtraLibrary (overrideCabal super.inline-c-cpp (drv:
|
|
|
|
{
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace inline-c-cpp.cabal --replace stdc++ c++
|
|
|
|
'';
|
|
|
|
})) pkgs.libcxx;
|
|
|
|
|
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
|
|
|
|
2016-05-30 12:51:15 +01:00
|
|
|
# https://github.com/NixOS/cabal2nix/issues/136 and https://github.com/NixOS/cabal2nix/issues/216
|
2016-09-14 18:05:32 +01:00
|
|
|
gio = disableHardening (addPkgconfigDepend (addBuildTool super.gio self.gtk2hs-buildtools) pkgs.glib) ["fortify"];
|
|
|
|
glib = disableHardening (addPkgconfigDepend (addBuildTool super.glib self.gtk2hs-buildtools) pkgs.glib) ["fortify"];
|
|
|
|
gtk3 = disableHardening (super.gtk3.override { inherit (pkgs) gtk3; }) ["fortify"];
|
|
|
|
gtk = disableHardening (addPkgconfigDepend (addBuildTool super.gtk self.gtk2hs-buildtools) pkgs.gtk2) ["fortify"];
|
2015-12-17 13:49:24 +00:00
|
|
|
gtksourceview2 = (addPkgconfigDepend super.gtksourceview2 pkgs.gtk2).override { inherit (pkgs.gnome2) gtksourceview; };
|
2015-03-30 08:53:46 +01:00
|
|
|
gtksourceview3 = super.gtksourceview3.override { inherit (pkgs.gnome3) gtksourceview; };
|
|
|
|
|
|
|
|
# Need WebkitGTK, not just webkit.
|
2015-08-13 13:19:20 +01:00
|
|
|
webkit = super.webkit.override { webkit = pkgs.webkitgtk2; };
|
2015-03-30 08:53:46 +01:00
|
|
|
webkitgtk3 = super.webkitgtk3.override { webkit = pkgs.webkitgtk24x; };
|
|
|
|
webkitgtk3-javascriptcore = super.webkitgtk3-javascriptcore.override { webkit = pkgs.webkitgtk24x; };
|
2015-04-02 13:49:57 +01:00
|
|
|
websnap = super.websnap.override { webkit = pkgs.webkitgtk24x; };
|
2015-01-20 11:56:04 +00:00
|
|
|
|
2015-01-21 09:22:30 +00:00
|
|
|
# https://github.com/mvoidex/hsdev/issues/11
|
|
|
|
hsdev = dontHaddock super.hsdev;
|
2015-01-20 15:25:11 +00:00
|
|
|
|
2015-03-15 22:57:44 +00:00
|
|
|
hs-mesos = overrideCabal super.hs-mesos (drv: {
|
|
|
|
# Pass _only_ mesos; the correct protobuf is propagated.
|
|
|
|
extraLibraries = [ pkgs.mesos ];
|
|
|
|
preConfigure = "sed -i -e /extra-lib-dirs/d -e 's|, /usr/include, /usr/local/include/mesos||' hs-mesos.cabal";
|
|
|
|
});
|
|
|
|
|
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: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-02-23 10:43:29 +00:00
|
|
|
dbmigrations = dontCheck super.dbmigrations;
|
2015-03-07 12:31:15 +00:00
|
|
|
euler = dontCheck super.euler; # https://github.com/decomputed/euler/issues/1
|
2015-01-20 16:28:50 +00:00
|
|
|
filestore = dontCheck super.filestore;
|
2015-08-06 16:29:03 +01:00
|
|
|
getopt-generics = dontCheck super.getopt-generics;
|
2015-01-20 22:59:31 +00:00
|
|
|
graceful = dontCheck super.graceful;
|
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-09-03 13:39:18 +01:00
|
|
|
ide-backend = dontCheck super.ide-backend;
|
2015-03-27 22:23:49 +00:00
|
|
|
marquise = dontCheck super.marquise; # https://github.com/anchor/marquise/issues/69
|
2015-01-20 16:28:50 +00:00
|
|
|
memcached-binary = dontCheck super.memcached-binary;
|
2015-09-03 13:39:18 +01:00
|
|
|
msgpack-rpc = dontCheck super.msgpack-rpc;
|
2015-03-05 17:02:53 +00:00
|
|
|
persistent-zookeeper = dontCheck super.persistent-zookeeper;
|
2015-03-05 17:22:06 +00:00
|
|
|
pocket-dns = dontCheck super.pocket-dns;
|
2015-01-20 16:28:50 +00:00
|
|
|
postgresql-simple = dontCheck super.postgresql-simple;
|
2015-02-08 12:26:02 +00:00
|
|
|
postgrest = dontCheck super.postgrest;
|
2015-01-20 16:28:50 +00:00
|
|
|
snowball = dontCheck super.snowball;
|
2015-09-03 13:39:18 +01:00
|
|
|
sophia = dontCheck super.sophia;
|
2015-03-03 20:44:57 +00:00
|
|
|
test-sandbox = dontCheck super.test-sandbox;
|
2016-10-07 09:57:54 +01:00
|
|
|
texrunner = dontCheck super.texrunner;
|
2015-03-09 11:14:33 +00:00
|
|
|
users-postgresql-simple = dontCheck super.users-postgresql-simple;
|
2015-01-25 19:57:19 +00:00
|
|
|
wai-middleware-hmac = dontCheck super.wai-middleware-hmac;
|
2015-06-17 15:06:15 +01:00
|
|
|
xkbcommon = dontCheck super.xkbcommon;
|
2015-01-20 16:28:50 +00:00
|
|
|
xmlgen = dontCheck super.xmlgen;
|
2015-09-27 15:20:24 +01:00
|
|
|
hapistrano = dontCheck super.hapistrano;
|
|
|
|
HerbiePlugin = dontCheck super.HerbiePlugin;
|
2016-10-06 01:04:35 +01:00
|
|
|
wai-cors = dontCheck super.wai-cors;
|
2015-01-20 16:28:50 +00:00
|
|
|
|
2015-01-20 16:28:50 +00:00
|
|
|
# These packages try to access the network.
|
2015-09-16 18:51:13 +01:00
|
|
|
amqp = dontCheck super.amqp;
|
2016-09-19 11:36:10 +01:00
|
|
|
amqp-conduit = dontCheck super.amqp-conduit;
|
2015-05-15 10:06:02 +01:00
|
|
|
bitcoin-api = dontCheck super.bitcoin-api;
|
2015-05-16 13:44:15 +01:00
|
|
|
bitcoin-api-extra = dontCheck super.bitcoin-api-extra;
|
2015-06-11 10:04:19 +01:00
|
|
|
bitx-bitcoin = dontCheck super.bitx-bitcoin; # http://hydra.cryp.to/build/926187/log/raw
|
2015-01-20 16:28:50 +00:00
|
|
|
concurrent-dns-cache = dontCheck super.concurrent-dns-cache;
|
2015-06-25 11:44:01 +01:00
|
|
|
digitalocean-kzs = dontCheck super.digitalocean-kzs; # https://github.com/KazumaSATO/digitalocean-kzs/issues/1
|
2015-08-26 22:01:42 +01:00
|
|
|
github-types = dontCheck super.github-types; # http://hydra.cryp.to/build/1114046/nixlog/1/raw
|
2015-02-02 11:25:38 +00:00
|
|
|
hadoop-rpc = dontCheck super.hadoop-rpc; # http://hydra.cryp.to/build/527461/nixlog/2/raw
|
2015-01-21 09:22:30 +00:00
|
|
|
hasql = dontCheck super.hasql; # http://hydra.cryp.to/build/502489/nixlog/4/raw
|
2016-09-24 21:03:19 +01:00
|
|
|
hasql-transaction = dontCheck super.hasql-transaction; # wants to connect to postgresql
|
2016-03-03 12:11:36 +00:00
|
|
|
hjsonschema = overrideCabal super.hjsonschema (drv: { testTarget = "local"; });
|
2015-01-20 21:56:30 +00:00
|
|
|
marmalade-upload = dontCheck super.marmalade-upload; # http://hydra.cryp.to/build/501904/nixlog/1/raw
|
2016-09-19 11:36:10 +01:00
|
|
|
mongoDB = dontCheck super.mongoDB;
|
2015-01-29 14:40:30 +00:00
|
|
|
network-transport-tcp = dontCheck super.network-transport-tcp;
|
2015-02-16 09:12:33 +00:00
|
|
|
network-transport-zeromq = dontCheck super.network-transport-zeromq; # https://github.com/tweag/network-transport-zeromq/issues/30
|
2015-06-11 10:02:53 +01:00
|
|
|
pipes-mongodb = dontCheck super.pipes-mongodb; # http://hydra.cryp.to/build/926195/log/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-02-16 09:12:33 +00:00
|
|
|
scotty-binding-play = dontCheck super.scotty-binding-play;
|
2016-09-08 16:38:57 +01:00
|
|
|
servant-router = dontCheck super.servant-router;
|
2015-06-25 11:22:40 +01:00
|
|
|
serversession-backend-redis = dontCheck super.serversession-backend-redis;
|
2015-02-05 12:01:40 +00:00
|
|
|
slack-api = dontCheck super.slack-api; # https://github.com/mpickering/slack-api/issues/5
|
2015-06-25 11:22:40 +01:00
|
|
|
socket = dontCheck super.socket;
|
2015-01-20 21:56:30 +00:00
|
|
|
stackage = dontCheck super.stackage; # http://hydra.cryp.to/build/501867/nixlog/1/raw
|
2015-05-23 14:12:20 +01:00
|
|
|
textocat-api = dontCheck super.textocat-api; # http://hydra.cryp.to/build/887011/log/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-04-25 16:41:42 +01:00
|
|
|
wreq-sb = dontCheck super.wreq-sb; # http://hydra.cryp.to/build/783948/log/raw
|
2015-05-21 10:56:21 +01:00
|
|
|
wuss = dontCheck super.wuss; # http://hydra.cryp.to/build/875964/nixlog/2/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
|
2015-03-14 12:09:51 +00:00
|
|
|
aeson-schema = dontCheck super.aeson-schema; # https://github.com/timjb/aeson-schema/issues/9
|
2016-09-17 09:48:12 +01:00
|
|
|
angel = dontCheck super.angel;
|
2015-01-20 16:28:50 +00:00
|
|
|
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
|
2016-09-17 09:48:12 +01:00
|
|
|
binary-search = dontCheck super.binary-search;
|
2015-01-20 16:28:50 +00:00
|
|
|
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
|
2016-09-17 09:48:12 +01:00
|
|
|
camfort = dontCheck super.camfort;
|
2015-01-20 16:28:50 +00:00
|
|
|
cautious-file = dontCheck super.cautious-file; # http://hydra.cryp.to/build/499730/log/raw
|
|
|
|
cjk = dontCheck super.cjk;
|
2016-09-17 09:48:12 +01:00
|
|
|
CLI = dontCheck super.CLI; # Upstream has no issue tracker.
|
2015-01-20 16:28:50 +00:00
|
|
|
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;
|
2016-09-17 09:48:12 +01:00
|
|
|
css-text = dontCheck super.css-text;
|
2015-01-20 16:28:50 +00:00
|
|
|
damnpacket = dontCheck super.damnpacket; # http://hydra.cryp.to/build/496923/log
|
2015-05-04 15:20:11 +01:00
|
|
|
data-hash = dontCheck super.data-hash;
|
2015-01-20 16:28:50 +00:00
|
|
|
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;
|
2016-09-17 09:48:12 +01:00
|
|
|
direct-sqlite = dontCheck super.direct-sqlite;
|
2015-01-20 16:28:50 +00:00
|
|
|
directory-layout = dontCheck super.directory-layout;
|
2016-09-17 09:48:12 +01:00
|
|
|
dlist = dontCheck super.dlist;
|
2015-01-20 16:28:50 +00:00
|
|
|
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
|
2016-09-17 09:48:12 +01:00
|
|
|
ed25519 = dontCheck super.ed25519;
|
2015-01-20 16:28:50 +00:00
|
|
|
either-unwrap = dontCheck super.either-unwrap; # http://hydra.cryp.to/build/498782/log/raw
|
2015-01-20 21:56:30 +00:00
|
|
|
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
|
|
|
|
ghc-imported-from = dontCheck super.ghc-imported-from;
|
|
|
|
ghc-parmake = dontCheck super.ghc-parmake;
|
2016-09-17 09:48:12 +01:00
|
|
|
ghcid = dontCheck super.ghcid;
|
2015-01-20 16:28:50 +00:00
|
|
|
git-vogue = dontCheck super.git-vogue;
|
2016-09-17 09:48:12 +01:00
|
|
|
gitlib-cmdline = dontCheck super.gitlib-cmdline;
|
2015-03-20 10:29:59 +00:00
|
|
|
GLFW-b = dontCheck super.GLFW-b; # https://github.com/bsl/GLFW-b/issues/50
|
2015-01-20 16:28:50 +00:00
|
|
|
hackport = dontCheck super.hackport;
|
|
|
|
hadoop-formats = dontCheck super.hadoop-formats;
|
|
|
|
haeredes = dontCheck super.haeredes;
|
|
|
|
hashed-storage = dontCheck super.hashed-storage;
|
|
|
|
hashring = dontCheck super.hashring;
|
2016-09-17 09:48:12 +01:00
|
|
|
hastache = dontCheck super.hastache;
|
2015-01-20 16:28:50 +00:00
|
|
|
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;
|
2015-03-05 17:11:10 +00:00
|
|
|
hierarchical-clustering = dontCheck super.hierarchical-clustering;
|
2015-01-20 16:28:50 +00:00
|
|
|
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;
|
|
|
|
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;
|
2015-06-03 15:12:21 +01:00
|
|
|
influxdb = dontCheck super.influxdb;
|
2015-01-20 16:28:50 +00:00
|
|
|
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;
|
2015-11-09 20:56:44 +00:00
|
|
|
ldap-client = dontCheck super.ldap-client;
|
2015-01-20 16:28:50 +00:00
|
|
|
lensref = dontCheck super.lensref;
|
|
|
|
liquidhaskell = dontCheck super.liquidhaskell;
|
2015-08-31 02:46:09 +01:00
|
|
|
lucid = dontCheck super.lucid; #https://github.com/chrisdone/lucid/issues/25
|
2016-09-14 18:05:32 +01:00
|
|
|
lvmrun = disableHardening (dontCheck super.lvmrun) ["format"];
|
2015-01-20 16:28:50 +00:00
|
|
|
memcache = dontCheck super.memcache;
|
2016-09-17 12:20:45 +01:00
|
|
|
MemoTrie = dontHaddock (dontCheck super.MemoTrie);
|
2016-09-17 09:48:12 +01:00
|
|
|
metrics = dontCheck super.metrics;
|
2015-01-20 16:28:50 +00:00
|
|
|
milena = dontCheck super.milena;
|
|
|
|
nats-queue = dontCheck super.nats-queue;
|
|
|
|
netpbm = dontCheck super.netpbm;
|
2016-09-17 09:48:12 +01:00
|
|
|
network = dontCheck super.network;
|
2015-01-20 16:28:50 +00:00
|
|
|
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;
|
|
|
|
persistent-redis = dontCheck super.persistent-redis;
|
|
|
|
pipes-extra = dontCheck super.pipes-extra;
|
|
|
|
pipes-websockets = dontCheck super.pipes-websockets;
|
2015-03-08 10:19:50 +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;
|
2016-09-17 09:48:12 +01:00
|
|
|
safecopy = dontCheck super.safecopy;
|
2015-01-20 16:28:50 +00:00
|
|
|
sai-shape-syb = dontCheck super.sai-shape-syb;
|
|
|
|
scp-streams = dontCheck super.scp-streams;
|
2015-04-19 16:03:21 +01:00
|
|
|
sdl2-ttf = dontCheck super.sdl2-ttf; # as of version 0.2.1, the test suite requires user intervention
|
2015-01-20 16:28:50 +00:00
|
|
|
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;
|
2016-09-17 09:48:12 +01:00
|
|
|
symengine = dontCheck super.symengine;
|
2015-08-29 03:41:56 +01:00
|
|
|
tar = dontCheck super.tar; #http://hydra.nixos.org/build/25088435/nixlog/2 (fails only on 32-bit)
|
2016-09-17 09:48:12 +01:00
|
|
|
th-printf = dontCheck super.th-printf;
|
2015-01-20 16:28:50 +00:00
|
|
|
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;
|
|
|
|
wai-logger = dontCheck super.wai-logger;
|
|
|
|
WebBits = dontCheck super.WebBits; # http://hydra.cryp.to/build/499604/log/raw
|
|
|
|
webdriver = dontCheck super.webdriver;
|
2016-09-17 09:48:12 +01:00
|
|
|
webdriver-angular = dontCheck super.webdriver-angular;
|
2015-01-20 16:28:50 +00:00
|
|
|
xsd = dontCheck super.xsd;
|
2016-09-17 09:48:12 +01:00
|
|
|
snap-core = dontCheck super.snap-core;
|
|
|
|
sourcemap = dontCheck super.sourcemap;
|
2015-01-20 16:28:50 +00:00
|
|
|
|
2016-09-17 09:48:12 +01:00
|
|
|
# Needs access to locale data, but looks for it in the wrong place.
|
2015-01-20 21:56:30 +00:00
|
|
|
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;
|
|
|
|
|
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;
|
2016-12-04 19:43:50 +00:00
|
|
|
vty_5_14 = dontCheck super.vty_5_14;
|
2015-01-22 16:24:01 +00:00
|
|
|
|
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-29 14:40:30 +00:00
|
|
|
# https://github.com/Philonous/xml-picklers/issues/5
|
|
|
|
xml-picklers = dontCheck super.xml-picklers;
|
2015-01-29 10:32:37 +00:00
|
|
|
|
2015-01-29 14:40:30 +00:00
|
|
|
# https://github.com/joeyadams/haskell-stm-delay/issues/3
|
|
|
|
stm-delay = dontCheck super.stm-delay;
|
|
|
|
|
2015-04-09 16:57:43 +01:00
|
|
|
# https://github.com/cgaebel/stm-conduit/issues/33
|
|
|
|
stm-conduit = dontCheck super.stm-conduit;
|
|
|
|
|
2015-02-02 10:57:59 +00:00
|
|
|
# https://github.com/pixbi/duplo/issues/25
|
|
|
|
duplo = dontCheck super.duplo;
|
|
|
|
|
2015-02-02 22:05:23 +00:00
|
|
|
# Nix-specific workaround
|
2016-09-17 12:20:29 +01:00
|
|
|
xmonad = appendPatch (dontCheck super.xmonad) ./patches/xmonad-nix.patch;
|
2015-02-02 22:05:23 +00:00
|
|
|
|
2015-02-03 11:24:13 +00:00
|
|
|
# https://github.com/evanrinehart/mikmod/issues/1
|
|
|
|
mikmod = addExtraLibrary super.mikmod pkgs.libmikmod;
|
|
|
|
|
2015-02-05 10:46:34 +00:00
|
|
|
# https://github.com/basvandijk/threads/issues/10
|
|
|
|
threads = dontCheck super.threads;
|
|
|
|
|
2015-02-05 11:55:47 +00:00
|
|
|
# https://github.com/ucsd-progsys/liquid-fixpoint/issues/44
|
|
|
|
liquid-fixpoint = overrideCabal super.liquid-fixpoint (drv: { preConfigure = "patchShebangs ."; });
|
|
|
|
|
2015-02-08 12:02:11 +00:00
|
|
|
# Missing module.
|
|
|
|
rematch = dontCheck super.rematch; # https://github.com/tcrayford/rematch/issues/5
|
|
|
|
rematch-text = dontCheck super.rematch-text; # https://github.com/tcrayford/rematch/issues/6
|
2015-02-07 15:21:30 +00:00
|
|
|
|
2015-04-12 13:15:44 +01:00
|
|
|
# no haddock since this is an umbrella package.
|
|
|
|
cloud-haskell = dontHaddock super.cloud-haskell;
|
|
|
|
|
2015-02-12 19:19:07 +00:00
|
|
|
# This packages compiles 4+ hours on a fast machine. That's just unreasonable.
|
|
|
|
CHXHtml = dontDistribute super.CHXHtml;
|
|
|
|
|
2015-02-15 19:04:38 +00:00
|
|
|
# https://github.com/NixOS/nixpkgs/issues/6350
|
|
|
|
paypal-adaptive-hoops = overrideCabal super.paypal-adaptive-hoops (drv: { testTarget = "local"; });
|
|
|
|
|
2015-02-17 13:23:15 +00:00
|
|
|
# https://github.com/afcowie/http-streams/issues/80
|
|
|
|
http-streams = dontCheck super.http-streams;
|
|
|
|
|
2015-02-20 12:31:43 +00:00
|
|
|
# https://github.com/vincenthz/hs-asn1/issues/12
|
|
|
|
asn1-encoding = dontCheck super.asn1-encoding;
|
|
|
|
|
2015-08-28 11:42:03 +01:00
|
|
|
# wxc supports wxGTX >= 3.0, but our current default version points to 2.8.
|
2015-10-09 10:05:03 +01:00
|
|
|
# http://hydra.cryp.to/build/1331287/log/raw
|
|
|
|
wxc = (addBuildDepend super.wxc self.split).override { wxGTK = pkgs.wxGTK30; };
|
2015-08-28 11:42:03 +01:00
|
|
|
wxcore = super.wxcore.override { wxGTK = pkgs.wxGTK30; };
|
2015-02-21 13:41:29 +00:00
|
|
|
|
2015-02-22 13:26:01 +00:00
|
|
|
# Depends on QuickCheck 1.x.
|
|
|
|
HaVSA = super.HaVSA.override { QuickCheck = self.QuickCheck_1_2_0_1; };
|
|
|
|
test-framework-quickcheck = super.test-framework-quickcheck.override { QuickCheck = self.QuickCheck_1_2_0_1; };
|
2015-02-21 13:46:56 +00:00
|
|
|
|
|
|
|
# Depends on broken test-framework-quickcheck.
|
|
|
|
apiary = dontCheck super.apiary;
|
|
|
|
apiary-authenticate = dontCheck super.apiary-authenticate;
|
|
|
|
apiary-clientsession = dontCheck super.apiary-clientsession;
|
|
|
|
apiary-cookie = dontCheck super.apiary-cookie;
|
|
|
|
apiary-eventsource = dontCheck super.apiary-eventsource;
|
|
|
|
apiary-logger = dontCheck super.apiary-logger;
|
|
|
|
apiary-memcached = dontCheck super.apiary-memcached;
|
|
|
|
apiary-mongoDB = dontCheck super.apiary-mongoDB;
|
|
|
|
apiary-persistent = dontCheck super.apiary-persistent;
|
|
|
|
apiary-purescript = dontCheck super.apiary-purescript;
|
|
|
|
apiary-session = dontCheck super.apiary-session;
|
|
|
|
apiary-websockets = dontCheck super.apiary-websockets;
|
|
|
|
|
2015-02-22 13:33:14 +00:00
|
|
|
# https://github.com/alephcloud/hs-configuration-tools/issues/40
|
|
|
|
configuration-tools = dontCheck super.configuration-tools;
|
|
|
|
|
2015-03-03 13:00:42 +00:00
|
|
|
# Test suite wants to connect to $DISPLAY.
|
2015-09-19 17:38:01 +01:00
|
|
|
hsqml = dontCheck (addExtraLibrary (super.hsqml.override { qt5 = pkgs.qt5Full; }) pkgs.mesa);
|
2015-03-03 13:00:42 +00:00
|
|
|
|
2015-04-01 15:43:29 +01:00
|
|
|
# HsColour: Language/Unlambda.hs: hGetContents: invalid argument (invalid byte sequence)
|
|
|
|
unlambda = dontHyperlinkSource super.unlambda;
|
|
|
|
|
2015-03-04 13:37:05 +00:00
|
|
|
# https://github.com/PaulJohnson/geodetics/issues/1
|
|
|
|
geodetics = dontCheck super.geodetics;
|
|
|
|
|
|
|
|
# https://github.com/AndrewRademacher/aeson-casing/issues/1
|
|
|
|
aeson-casing = dontCheck super.aeson-casing;
|
|
|
|
|
|
|
|
# https://github.com/junjihashimoto/test-sandbox-compose/issues/2
|
|
|
|
test-sandbox-compose = dontCheck super.test-sandbox-compose;
|
|
|
|
|
2016-06-03 14:08:21 +01:00
|
|
|
# Relax overspecified constraints. Unfortunately, jailbreak won't work.
|
|
|
|
pandoc = overrideCabal super.pandoc (drv: {
|
|
|
|
preConfigure = "sed -i -e 's,time .* < 1.6,time >= 1.5,' -e 's,haddock-library >= 1.1 && < 1.3,haddock-library >= 1.1,' pandoc.cabal";
|
|
|
|
});
|
2015-03-30 14:35:36 +01:00
|
|
|
|
2015-08-20 22:23:44 +01:00
|
|
|
# Tests attempt to use NPM to install from the network into
|
|
|
|
# /homeless-shelter. Disabled.
|
|
|
|
purescript = dontCheck super.purescript;
|
|
|
|
|
2015-03-08 10:34:51 +00:00
|
|
|
# https://github.com/tych0/xcffib/issues/37
|
2015-03-14 13:44:35 +00:00
|
|
|
xcffib = dontCheck super.xcffib;
|
2015-03-08 10:34:51 +00:00
|
|
|
|
2015-03-20 10:28:13 +00:00
|
|
|
# https://github.com/afcowie/locators/issues/1
|
|
|
|
locators = dontCheck super.locators;
|
|
|
|
|
2015-03-29 18:07:41 +01:00
|
|
|
# https://github.com/haskell/haddock/issues/378
|
|
|
|
haddock-library = dontCheck super.haddock-library;
|
|
|
|
|
2015-03-31 16:48:23 +01:00
|
|
|
# https://github.com/anton-k/csound-expression-dynamic/issues/1
|
|
|
|
csound-expression-dynamic = dontHaddock super.csound-expression-dynamic;
|
|
|
|
|
2015-04-03 00:07:27 +01:00
|
|
|
# Hardcoded include path
|
|
|
|
poppler = overrideCabal super.poppler (drv: {
|
2015-08-06 13:10:48 +01:00
|
|
|
postPatch = ''
|
2015-04-03 00:07:27 +01:00
|
|
|
sed -i -e 's,glib/poppler.h,poppler.h,' poppler.cabal
|
|
|
|
sed -i -e 's,glib/poppler.h,poppler.h,' Graphics/UI/Gtk/Poppler/Structs.hsc
|
|
|
|
'';
|
|
|
|
});
|
|
|
|
|
2015-04-06 19:11:25 +01:00
|
|
|
# Uses OpenGL in testing
|
|
|
|
caramia = dontCheck super.caramia;
|
|
|
|
|
2016-05-13 00:26:31 +01:00
|
|
|
llvm-general-darwin = overrideCabal (super.llvm-general.override { llvm-config = pkgs.llvm_35; }) (drv: {
|
|
|
|
preConfigure = ''
|
|
|
|
sed -i llvm-general.cabal \
|
|
|
|
-e 's,extra-libraries: stdc++,extra-libraries: c++,'
|
|
|
|
'';
|
|
|
|
configureFlags = (drv.configureFlags or []) ++ ["--extra-include-dirs=${pkgs.libcxx}/include/c++/v1"];
|
|
|
|
librarySystemDepends = [ pkgs.libcxx ] ++ drv.librarySystemDepends or [];
|
|
|
|
});
|
|
|
|
|
2015-10-13 15:12:52 +01:00
|
|
|
# Supports only 3.5 for now, https://github.com/bscarlet/llvm-general/issues/142
|
2016-05-13 00:26:31 +01:00
|
|
|
llvm-general =
|
|
|
|
if pkgs.stdenv.isDarwin
|
|
|
|
then self.llvm-general-darwin
|
|
|
|
else super.llvm-general.override { llvm-config = pkgs.llvm_35; };
|
2015-09-30 14:16:14 +01:00
|
|
|
|
2015-05-28 09:34:13 +01:00
|
|
|
# Needs help finding LLVM.
|
|
|
|
spaceprobe = addBuildTool super.spaceprobe self.llvmPackages.llvm;
|
2015-04-06 23:10:34 +01:00
|
|
|
|
2015-03-29 02:58:32 +01:00
|
|
|
# Tries to run GUI in tests
|
2015-10-10 15:01:36 +01:00
|
|
|
leksah = dontCheck (overrideCabal super.leksah (drv: {
|
|
|
|
executableSystemDepends = (drv.executableSystemDepends or []) ++ (with pkgs; [
|
|
|
|
gnome3.defaultIconTheme # Fix error: Icon 'window-close' not present in theme ...
|
|
|
|
wrapGAppsHook # Fix error: GLib-GIO-ERROR **: No GSettings schemas are installed on the system
|
|
|
|
gtk3 # Fix error: GLib-GIO-ERROR **: Settings schema 'org.gtk.Settings.FileChooser' is not installed
|
|
|
|
]);
|
|
|
|
postPatch = (drv.postPatch or "") + ''
|
|
|
|
for f in src/IDE/Leksah.hs src/IDE/Utils/ServerConnection.hs
|
|
|
|
do
|
|
|
|
substituteInPlace "$f" --replace "\"leksah-server\"" "\"${self.leksah-server}/bin/leksah-server\""
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
}));
|
2015-03-29 02:58:32 +01:00
|
|
|
|
2016-10-07 11:00:12 +01:00
|
|
|
# Requires optparse-applicative 0.13.0.0
|
|
|
|
diagrams-pgf = super.diagrams-pgf.overrideScope (self: super: {
|
|
|
|
optparse-applicative = self.optparse-applicative_0_13_0_0;
|
|
|
|
});
|
|
|
|
|
2015-04-13 11:08:15 +01:00
|
|
|
# Patch to consider NIX_GHC just like xmonad does
|
2015-08-05 20:48:18 +01:00
|
|
|
dyre = appendPatch super.dyre ./patches/dyre-nix.patch;
|
2015-04-13 11:08:15 +01:00
|
|
|
|
2015-04-20 16:07:35 +01:00
|
|
|
# Test suite won't compile against tasty-hunit 0.9.x.
|
2015-05-15 12:58:16 +01:00
|
|
|
zlib = dontCheck super.zlib;
|
2015-04-20 16:07:35 +01:00
|
|
|
|
2015-04-26 12:05:21 +01:00
|
|
|
# https://github.com/ndmitchell/shake/issues/206
|
2015-06-23 10:38:18 +01:00
|
|
|
# https://github.com/ndmitchell/shake/issues/267
|
|
|
|
shake = overrideCabal super.shake (drv: { doCheck = !pkgs.stdenv.isDarwin && false; });
|
2015-01-17 19:54:31 +00:00
|
|
|
|
2015-05-03 19:34:10 +01:00
|
|
|
# https://github.com/nushio3/doctest-prop/issues/1
|
|
|
|
doctest-prop = dontCheck super.doctest-prop;
|
|
|
|
|
2015-05-11 18:56:16 +01:00
|
|
|
# https://github.com/bos/aeson/issues/253
|
|
|
|
aeson = dontCheck super.aeson;
|
2015-05-09 11:18:04 +01:00
|
|
|
|
2015-05-15 18:39:45 +01:00
|
|
|
# Won't compile with recent versions of QuickCheck.
|
2015-07-22 14:11:04 +01:00
|
|
|
inilist = dontCheck super.inilist;
|
2015-05-15 18:39:45 +01:00
|
|
|
MissingH = dontCheck super.MissingH;
|
|
|
|
|
2015-05-18 11:29:10 +01:00
|
|
|
# https://github.com/yaccz/saturnin/issues/3
|
|
|
|
Saturnin = dontCheck super.Saturnin;
|
|
|
|
|
2015-05-21 10:47:34 +01:00
|
|
|
# https://github.com/kkardzis/curlhs/issues/6
|
|
|
|
curlhs = dontCheck super.curlhs;
|
|
|
|
|
2015-05-22 10:31:26 +01:00
|
|
|
# https://github.com/hvr/token-bucket/issues/3
|
|
|
|
token-bucket = dontCheck super.token-bucket;
|
|
|
|
|
2015-05-23 14:16:31 +01:00
|
|
|
# https://github.com/alphaHeavy/lzma-enumerator/issues/3
|
|
|
|
lzma-enumerator = dontCheck super.lzma-enumerator;
|
|
|
|
|
2015-05-28 09:03:36 +01:00
|
|
|
# https://github.com/BNFC/bnfc/issues/140
|
|
|
|
BNFC = dontCheck super.BNFC;
|
|
|
|
|
2015-05-29 10:15:24 +01:00
|
|
|
# FPCO's fork of Cabal won't succeed its test suite.
|
|
|
|
Cabal-ide-backend = dontCheck super.Cabal-ide-backend;
|
|
|
|
|
2015-06-06 14:14:47 +01:00
|
|
|
# https://github.com/jaspervdj/websockets/issues/104
|
|
|
|
websockets = dontCheck super.websockets;
|
|
|
|
|
2015-06-09 14:13:00 +01:00
|
|
|
# Avoid spurious test suite failures.
|
|
|
|
fft = dontCheck super.fft;
|
|
|
|
|
2015-06-11 10:11:15 +01:00
|
|
|
# This package can't be built on non-Windows systems.
|
|
|
|
Win32 = overrideCabal super.Win32 (drv: { broken = !pkgs.stdenv.isCygwin; });
|
|
|
|
inline-c-win32 = dontDistribute super.inline-c-win32;
|
2015-07-23 19:33:26 +01:00
|
|
|
Southpaw = dontDistribute super.Southpaw;
|
2015-06-11 10:11:15 +01:00
|
|
|
|
2015-06-16 10:12:14 +01:00
|
|
|
# https://github.com/yesodweb/serversession/issues/1
|
|
|
|
serversession = dontCheck super.serversession;
|
|
|
|
|
2015-07-12 00:04:36 +01:00
|
|
|
yesod-bin = if pkgs.stdenv.isDarwin
|
|
|
|
then addBuildDepend super.yesod-bin pkgs.darwin.apple_sdk.frameworks.Cocoa
|
|
|
|
else super.yesod-bin;
|
|
|
|
|
2015-11-15 19:57:58 +00:00
|
|
|
hmatrix = if pkgs.stdenv.isDarwin
|
|
|
|
then addBuildDepend super.hmatrix pkgs.darwin.apple_sdk.frameworks.Accelerate
|
|
|
|
else super.hmatrix;
|
|
|
|
|
2015-07-05 19:58:34 +01:00
|
|
|
# Hydra no longer allows building texlive packages.
|
|
|
|
lhs2tex = dontDistribute super.lhs2tex;
|
|
|
|
|
2015-07-21 10:15:26 +01:00
|
|
|
# https://ghc.haskell.org/trac/ghc/ticket/9825
|
|
|
|
vimus = overrideCabal super.vimus (drv: { broken = pkgs.stdenv.isLinux && pkgs.stdenv.isi686; });
|
2015-07-22 18:43:01 +01:00
|
|
|
|
2015-08-04 12:15:17 +01:00
|
|
|
# https://github.com/hspec/mockery/issues/6
|
2015-08-08 09:55:49 +01:00
|
|
|
mockery = overrideCabal super.mockery (drv: { preCheck = "export TRAVIS=true"; });
|
2015-08-04 12:15:17 +01:00
|
|
|
|
2015-08-06 12:43:51 +01:00
|
|
|
# https://github.com/alphaHeavy/lzma-conduit/issues/5
|
|
|
|
lzma-conduit = dontCheck super.lzma-conduit;
|
|
|
|
|
2015-08-06 13:26:18 +01:00
|
|
|
# https://github.com/kazu-yamamoto/logger/issues/42
|
|
|
|
logger = dontCheck super.logger;
|
|
|
|
|
2015-08-06 14:34:08 +01:00
|
|
|
# https://github.com/edwinb/EpiVM/issues/13
|
|
|
|
# https://github.com/edwinb/EpiVM/issues/14
|
|
|
|
epic = addExtraLibraries (addBuildTool super.epic self.happy) [pkgs.boehmgc pkgs.gmp];
|
|
|
|
|
2015-08-06 15:48:13 +01:00
|
|
|
# https://github.com/ekmett/wl-pprint-terminfo/issues/7
|
|
|
|
wl-pprint-terminfo = addExtraLibrary super.wl-pprint-terminfo pkgs.ncurses;
|
|
|
|
|
2015-08-06 16:13:48 +01:00
|
|
|
# https://github.com/bos/pcap/issues/5
|
|
|
|
pcap = addExtraLibrary super.pcap pkgs.libpcap;
|
|
|
|
|
2015-08-06 18:00:53 +01:00
|
|
|
# https://github.com/qnikst/imagemagick/issues/34
|
|
|
|
imagemagick = dontCheck super.imagemagick;
|
|
|
|
|
2015-08-07 18:53:16 +01:00
|
|
|
# https://github.com/liyang/thyme/issues/36
|
|
|
|
thyme = dontCheck super.thyme;
|
|
|
|
|
2015-08-18 10:47:59 +01:00
|
|
|
# https://github.com/k0ral/hbro-contrib/issues/1
|
2015-08-14 16:29:48 +01:00
|
|
|
hbro-contrib = dontDistribute super.hbro-contrib;
|
|
|
|
|
2015-08-14 16:38:57 +01:00
|
|
|
# Elm is no longer actively maintained on Hackage: https://github.com/NixOS/nixpkgs/pull/9233.
|
|
|
|
Elm = markBroken super.Elm;
|
|
|
|
elm-build-lib = markBroken super.elm-build-lib;
|
|
|
|
elm-compiler = markBroken super.elm-compiler;
|
|
|
|
elm-get = markBroken super.elm-get;
|
|
|
|
elm-make = markBroken super.elm-make;
|
|
|
|
elm-package = markBroken super.elm-package;
|
|
|
|
elm-reactor = markBroken super.elm-reactor;
|
|
|
|
elm-repl = markBroken super.elm-repl;
|
|
|
|
elm-server = markBroken super.elm-server;
|
|
|
|
elm-yesod = markBroken super.elm-yesod;
|
|
|
|
|
2015-08-17 16:59:33 +01:00
|
|
|
# https://github.com/athanclark/sets/issues/2
|
2015-08-15 20:51:25 +01:00
|
|
|
sets = dontCheck super.sets;
|
|
|
|
|
2015-08-16 17:24:31 +01:00
|
|
|
# https://github.com/lens/lens-aeson/issues/18
|
|
|
|
lens-aeson = dontCheck super.lens-aeson;
|
|
|
|
|
2015-08-18 00:21:18 +01:00
|
|
|
# Byte-compile elisp code for Emacs.
|
2016-06-07 20:32:46 +01:00
|
|
|
ghc-mod = overrideCabal super.ghc-mod (drv: {
|
2015-08-18 00:21:18 +01:00
|
|
|
preCheck = "export HOME=$TMPDIR";
|
|
|
|
testToolDepends = drv.testToolDepends or [] ++ [self.cabal-install];
|
|
|
|
doCheck = false; # https://github.com/kazu-yamamoto/ghc-mod/issues/335
|
|
|
|
executableToolDepends = drv.executableToolDepends or [] ++ [pkgs.emacs];
|
|
|
|
postInstall = ''
|
|
|
|
local lispdir=( "$out/share/"*"-${self.ghc.name}/${drv.pname}-${drv.version}/elisp" )
|
|
|
|
make -C $lispdir
|
|
|
|
mkdir -p $out/share/emacs/site-lisp
|
|
|
|
ln -s "$lispdir/"*.el{,c} $out/share/emacs/site-lisp/
|
|
|
|
'';
|
|
|
|
});
|
|
|
|
|
2016-09-12 09:13:01 +01:00
|
|
|
# Fine-tune the build.
|
2016-09-26 00:19:38 +01:00
|
|
|
structured-haskell-mode = (overrideCabal super.structured-haskell-mode (drv: {
|
2016-09-26 07:40:08 +01:00
|
|
|
# Bump version to latest git-version to get support for Emacs 25.x.
|
|
|
|
version = "1.0.20-28-g1ffb4db";
|
2016-09-26 00:19:38 +01:00
|
|
|
src = pkgs.fetchFromGitHub {
|
|
|
|
owner = "chrisdone";
|
|
|
|
repo = "structured-haskell-mode";
|
2016-10-19 14:10:07 +01:00
|
|
|
rev = "dde5104ee28e1c63ca9fbc37c969f8e319b4b903";
|
|
|
|
sha256 = "0g5qpnxzr9qmgzvsld5mg94rb28xb8kd1a02q045r6zlmv1zx7lp";
|
2016-09-26 00:19:38 +01:00
|
|
|
};
|
2016-09-12 09:13:01 +01:00
|
|
|
# Statically linked Haskell libraries make the tool start-up much faster,
|
|
|
|
# which is important for use in Emacs.
|
|
|
|
enableSharedExecutables = false;
|
2016-09-26 07:41:04 +01:00
|
|
|
# Make elisp files available at a location where people expect it. We
|
|
|
|
# cannot easily byte-compile these files, unfortunately, because they
|
|
|
|
# depend on a new version of haskell-mode that we don't have yet.
|
2015-08-18 00:21:53 +01:00
|
|
|
postInstall = ''
|
2016-09-26 00:19:38 +01:00
|
|
|
local lispdir=( "$out/share/"*"-${self.ghc.name}/${drv.pname}-"*"/elisp" )
|
2015-08-18 00:21:53 +01:00
|
|
|
mkdir -p $out/share/emacs
|
|
|
|
ln -s $lispdir $out/share/emacs/site-lisp
|
|
|
|
'';
|
2016-09-26 00:19:38 +01:00
|
|
|
})).override {
|
2016-12-12 21:54:28 +00:00
|
|
|
haskell-src-exts = self.haskell-src-exts_1_19_1;
|
2016-09-26 00:19:38 +01:00
|
|
|
};
|
2015-08-18 00:21:53 +01:00
|
|
|
|
2016-09-26 07:41:42 +01:00
|
|
|
# # Make elisp files available at a location where people expect it.
|
2016-11-25 00:17:46 +00:00
|
|
|
hindent = (overrideCabal super.hindent (drv: {
|
2016-09-26 07:41:42 +01:00
|
|
|
# We cannot easily byte-compile these files, unfortunately, because they
|
|
|
|
# depend on a new version of haskell-mode that we don't have yet.
|
2015-08-18 11:59:36 +01:00
|
|
|
postInstall = ''
|
|
|
|
local lispdir=( "$out/share/"*"-${self.ghc.name}/${drv.pname}-${drv.version}/elisp" )
|
|
|
|
mkdir -p $out/share/emacs
|
|
|
|
ln -s $lispdir $out/share/emacs/site-lisp
|
|
|
|
'';
|
2016-09-19 16:04:52 +01:00
|
|
|
doCheck = false; # https://github.com/chrisdone/hindent/issues/299
|
2016-11-25 00:17:46 +00:00
|
|
|
})).override {
|
2016-12-12 21:54:28 +00:00
|
|
|
haskell-src-exts = self.haskell-src-exts_1_19_1;
|
2016-11-25 00:17:46 +00:00
|
|
|
};
|
2015-08-18 11:59:36 +01:00
|
|
|
|
2015-08-17 21:27:17 +01:00
|
|
|
# https://github.com/yesodweb/Shelly.hs/issues/106
|
|
|
|
# https://github.com/yesodweb/Shelly.hs/issues/108
|
|
|
|
shelly = dontCheck super.shelly;
|
|
|
|
|
2015-08-18 21:54:42 +01:00
|
|
|
# https://github.com/bos/configurator/issues/22
|
|
|
|
configurator = dontCheck super.configurator;
|
|
|
|
|
2015-08-26 15:20:21 +01:00
|
|
|
# The cabal files for these libraries do not list the required system dependencies.
|
2016-02-03 17:28:49 +00:00
|
|
|
miniball = overrideCabal super.miniball (drv: {
|
|
|
|
librarySystemDepends = [ pkgs.miniball ];
|
|
|
|
});
|
2015-08-26 15:20:21 +01:00
|
|
|
SDL-image = overrideCabal super.SDL-image (drv: {
|
|
|
|
librarySystemDepends = [ pkgs.SDL pkgs.SDL_image ] ++ drv.librarySystemDepends or [];
|
|
|
|
});
|
|
|
|
SDL-ttf = overrideCabal super.SDL-ttf (drv: {
|
|
|
|
librarySystemDepends = [ pkgs.SDL pkgs.SDL_ttf ];
|
|
|
|
});
|
|
|
|
SDL-mixer = overrideCabal super.SDL-mixer (drv: {
|
|
|
|
librarySystemDepends = [ pkgs.SDL pkgs.SDL_mixer ];
|
|
|
|
});
|
|
|
|
SDL-gfx = overrideCabal super.SDL-gfx (drv: {
|
|
|
|
librarySystemDepends = [ pkgs.SDL pkgs.SDL_gfx ];
|
|
|
|
});
|
|
|
|
SDL-mpeg = overrideCabal super.SDL-mpeg (drv: {
|
|
|
|
configureFlags = (drv.configureFlags or []) ++ [
|
|
|
|
"--extra-lib-dirs=${pkgs.smpeg}/lib"
|
|
|
|
"--extra-include-dirs=${pkgs.smpeg}/include/smpeg"
|
|
|
|
];
|
|
|
|
});
|
2015-08-26 16:34:02 +01:00
|
|
|
|
|
|
|
# https://github.com/ivanperez-keera/hcwiid/pull/4
|
|
|
|
hcwiid = overrideCabal super.hcwiid (drv: {
|
|
|
|
configureFlags = (drv.configureFlags or []) ++ [
|
2016-08-30 00:58:43 +01:00
|
|
|
"--extra-lib-dirs=${pkgs.bluez.out}/lib"
|
2015-08-26 16:34:02 +01:00
|
|
|
"--extra-lib-dirs=${pkgs.cwiid}/lib"
|
|
|
|
"--extra-include-dirs=${pkgs.cwiid}/include"
|
2016-08-30 00:58:43 +01:00
|
|
|
"--extra-include-dirs=${pkgs.bluez.dev}/include"
|
2015-08-26 16:34:02 +01:00
|
|
|
];
|
|
|
|
prePatch = '' sed -i -e "/Extra-Lib-Dirs/d" -e "/Include-Dirs/d" "hcwiid.cabal" '';
|
|
|
|
});
|
2015-08-28 13:23:57 +01:00
|
|
|
|
|
|
|
# https://github.com/basvandijk/concurrent-extra/issues/12
|
|
|
|
concurrent-extra = dontCheck super.concurrent-extra;
|
|
|
|
|
2015-09-01 17:01:34 +01:00
|
|
|
# https://github.com/bos/bloomfilter/issues/7
|
|
|
|
bloomfilter = appendPatch super.bloomfilter ./patches/bloomfilter-fix-on-32bit.patch;
|
|
|
|
|
2015-09-03 13:38:52 +01:00
|
|
|
# https://github.com/pxqr/base32-bytestring/issues/4
|
|
|
|
base32-bytestring = dontCheck super.base32-bytestring;
|
|
|
|
|
2015-09-07 09:10:07 +01:00
|
|
|
# https://github.com/JohnLato/listlike/pull/6#issuecomment-137986095
|
2015-09-06 19:38:17 +01:00
|
|
|
ListLike = dontCheck super.ListLike;
|
|
|
|
|
2015-09-07 21:37:42 +01:00
|
|
|
# https://github.com/goldfirere/singletons/issues/122
|
|
|
|
singletons = dontCheck super.singletons;
|
|
|
|
|
2015-08-30 00:26:09 +01:00
|
|
|
# cabal2nix doesn't pick up some of the dependencies.
|
|
|
|
ginsu = let
|
|
|
|
g = addBuildDepend super.ginsu pkgs.perl;
|
|
|
|
g' = overrideCabal g (drv: {
|
|
|
|
executableSystemDepends = (drv.executableSystemDepends or []) ++ [
|
|
|
|
pkgs.ncurses
|
|
|
|
];
|
|
|
|
});
|
|
|
|
in g';
|
|
|
|
|
2015-09-16 12:17:11 +01:00
|
|
|
# https://github.com/guillaume-nargeot/hpc-coveralls/issues/52
|
|
|
|
hpc-coveralls = disableSharedExecutables super.hpc-coveralls;
|
2015-09-17 09:05:51 +01:00
|
|
|
|
2015-09-17 14:56:35 +01:00
|
|
|
# https://github.com/fpco/stackage/issues/838
|
|
|
|
cryptonite = dontCheck super.cryptonite;
|
2015-09-18 08:55:30 +01:00
|
|
|
|
2015-09-18 08:59:08 +01:00
|
|
|
# We cannot build this package w/o the C library from <http://www.phash.org/>.
|
|
|
|
phash = markBroken super.phash;
|
|
|
|
|
2015-09-27 14:50:52 +01:00
|
|
|
# https://github.com/sol/hpack/issues/53
|
|
|
|
hpack = dontCheck super.hpack;
|
|
|
|
|
2016-01-02 15:16:42 +00:00
|
|
|
# Tests require `docker` command in PATH
|
|
|
|
# Tests require running docker service :on localhost
|
|
|
|
docker = dontCheck super.docker;
|
|
|
|
|
2015-10-09 10:19:23 +01:00
|
|
|
# https://github.com/deech/fltkhs/issues/16
|
|
|
|
fltkhs = overrideCabal super.fltkhs (drv: {
|
|
|
|
libraryToolDepends = (drv.libraryToolDepends or []) ++ [pkgs.autoconf];
|
|
|
|
librarySystemDepends = (drv.librarySystemDepends or []) ++ [pkgs.fltk13 pkgs.mesa_noglu pkgs.libjpeg];
|
|
|
|
broken = true; # linking fails because the build doesn't pull in the mesa libraries
|
|
|
|
});
|
|
|
|
fltkhs-fluid-examples = dontDistribute super.fltkhs-fluid-examples;
|
|
|
|
|
2015-10-16 17:08:28 +01:00
|
|
|
# https://github.com/skogsbaer/hscurses/pull/26
|
|
|
|
hscurses = overrideCabal super.hscurses (drv: {
|
|
|
|
librarySystemDepends = (drv.librarySystemDepends or []) ++ [ pkgs.ncurses ];
|
|
|
|
});
|
|
|
|
|
2016-03-17 19:56:32 +00:00
|
|
|
# We get lots of strange compiler errors during the test suite run.
|
|
|
|
jsaddle = dontCheck super.jsaddle;
|
|
|
|
|
2016-04-06 22:05:55 +01:00
|
|
|
# Looks like Avahi provides the missing library
|
2016-04-07 06:58:32 +01:00
|
|
|
dnssd = super.dnssd.override { dns_sd = pkgs.avahi.override { withLibdnssdCompat = true; }; };
|
2016-04-05 12:14:48 +01:00
|
|
|
|
2016-04-09 03:25:04 +01:00
|
|
|
# Haste stuff
|
2016-09-07 01:34:52 +01:00
|
|
|
haste-Cabal = markBroken (self.callPackage ../tools/haskell/haste/haste-Cabal.nix {});
|
2016-09-08 13:19:16 +01:00
|
|
|
haste-cabal-install = markBroken (self.callPackage ../tools/haskell/haste/haste-cabal-install.nix { Cabal = self.haste-Cabal; });
|
2016-09-08 13:20:09 +01:00
|
|
|
haste-compiler = markBroken (self.callPackage ../tools/haskell/haste/haste-compiler.nix { inherit overrideCabal; super-haste-compiler = super.haste-compiler; });
|
2016-04-11 21:39:15 +01:00
|
|
|
|
|
|
|
# Ensure the necessary frameworks are propagatedBuildInputs on darwin
|
|
|
|
OpenGLRaw = overrideCabal super.OpenGLRaw (drv: {
|
|
|
|
librarySystemDepends =
|
|
|
|
pkgs.lib.optionals (!pkgs.stdenv.isDarwin) drv.librarySystemDepends;
|
|
|
|
libraryHaskellDepends = drv.libraryHaskellDepends
|
|
|
|
++ pkgs.lib.optionals pkgs.stdenv.isDarwin
|
|
|
|
[ pkgs.darwin.apple_sdk.frameworks.OpenGL ];
|
|
|
|
preConfigure = pkgs.lib.optionalString pkgs.stdenv.isDarwin ''
|
|
|
|
frameworkPaths=($(for i in $nativeBuildInputs; do if [ -d "$i"/Library/Frameworks ]; then echo "-F$i/Library/Frameworks"; fi done))
|
|
|
|
frameworkPaths=$(IFS=, ; echo "''${frameworkPaths[@]}")
|
|
|
|
configureFlags+=$(if [ -n "$frameworkPaths" ]; then echo -n "--ghc-options=-optl=$frameworkPaths"; fi)
|
|
|
|
'';
|
|
|
|
});
|
|
|
|
GLURaw = overrideCabal super.GLURaw (drv: {
|
|
|
|
librarySystemDepends =
|
|
|
|
pkgs.lib.optionals (!pkgs.stdenv.isDarwin) drv.librarySystemDepends;
|
|
|
|
libraryHaskellDepends = drv.libraryHaskellDepends
|
|
|
|
++ pkgs.lib.optionals pkgs.stdenv.isDarwin
|
|
|
|
[ pkgs.darwin.apple_sdk.frameworks.OpenGL ];
|
|
|
|
});
|
|
|
|
bindings-GLFW = overrideCabal super.bindings-GLFW (drv: {
|
|
|
|
doCheck = false; # requires an active X11 display
|
|
|
|
librarySystemDepends =
|
|
|
|
pkgs.lib.optionals (!pkgs.stdenv.isDarwin) drv.librarySystemDepends;
|
|
|
|
libraryHaskellDepends = drv.libraryHaskellDepends
|
|
|
|
++ pkgs.lib.optionals pkgs.stdenv.isDarwin
|
|
|
|
(with pkgs.darwin.apple_sdk.frameworks;
|
|
|
|
[ AGL Cocoa OpenGL IOKit Kernel CoreVideo
|
|
|
|
pkgs.darwin.CF ]);
|
|
|
|
});
|
|
|
|
OpenCL = overrideCabal super.OpenCL (drv: {
|
|
|
|
librarySystemDepends =
|
|
|
|
pkgs.lib.optionals (!pkgs.stdenv.isDarwin) drv.librarySystemDepends;
|
|
|
|
libraryHaskellDepends = drv.libraryHaskellDepends
|
|
|
|
++ pkgs.lib.optionals pkgs.stdenv.isDarwin
|
|
|
|
[ pkgs.darwin.apple_sdk.frameworks.OpenCL ];
|
|
|
|
});
|
|
|
|
|
2016-04-24 19:12:23 +01:00
|
|
|
# tinc is a new build driver a la Stack that's not yet available from Hackage.
|
|
|
|
tinc = self.callPackage ../tools/haskell/tinc {};
|
|
|
|
|
2016-05-30 12:51:15 +01:00
|
|
|
# Tools that use gtk2hs-buildtools now depend on them in a custom-setup stanza
|
|
|
|
cairo = addBuildTool super.cairo self.gtk2hs-buildtools;
|
2016-09-14 18:05:32 +01:00
|
|
|
pango = disableHardening (addBuildTool super.pango self.gtk2hs-buildtools) ["fortify"];
|
2016-05-30 23:24:38 +01:00
|
|
|
|
2016-06-09 08:51:40 +01:00
|
|
|
# Fix tests which would otherwise fail with "Couldn't launch intero process."
|
|
|
|
intero = overrideCabal super.intero (drv: {
|
|
|
|
postPatch = (drv.postPatch or "") + ''
|
|
|
|
substituteInPlace src/test/Main.hs --replace "\"intero\"" "\"$PWD/dist/build/intero/intero\""
|
|
|
|
'';
|
|
|
|
});
|
2016-06-08 19:13:52 +01:00
|
|
|
|
2016-12-12 14:22:07 +00:00
|
|
|
# The most current version needs some packages to build that are not in LTS 7.x.
|
2016-10-19 14:11:51 +01:00
|
|
|
stack = super.stack.overrideScope (self: super: {
|
2016-12-27 14:59:17 +00:00
|
|
|
http-client = self.http-client_0_5_5;
|
2016-09-30 20:15:25 +01:00
|
|
|
http-client-tls = self.http-client-tls_0_3_3;
|
2016-10-13 20:53:03 +01:00
|
|
|
http-conduit = self.http-conduit_2_2_3;
|
2016-09-30 20:15:25 +01:00
|
|
|
optparse-applicative = dontCheck self.optparse-applicative_0_13_0_0;
|
|
|
|
criterion = super.criterion.override { inherit (super) optparse-applicative; };
|
2016-12-12 14:22:07 +00:00
|
|
|
aeson = self.aeson_1_0_2_1;
|
2016-06-10 13:40:19 +01:00
|
|
|
});
|
2016-08-06 12:29:01 +01:00
|
|
|
|
2016-11-02 07:04:46 +00:00
|
|
|
# The latest Hoogle needs versions not yet in LTS Haskell 7.x.
|
2016-12-12 21:54:28 +00:00
|
|
|
hoogle = super.hoogle.override { haskell-src-exts = self.haskell-src-exts_1_19_1; };
|
2016-11-02 07:04:46 +00:00
|
|
|
|
2016-11-20 14:41:20 +00:00
|
|
|
# To be in sync with Hoogle.
|
|
|
|
lambdabot-haskell-plugins = (overrideCabal super.lambdabot-haskell-plugins (drv: {
|
|
|
|
patches = [
|
|
|
|
(pkgs.fetchpatch {
|
|
|
|
url = "https://github.com/lambdabot/lambdabot/commit/78a2361024724acb70bc1c12c42f3a16015bb373.patch";
|
|
|
|
sha256 = "0aw0jpw07idkrg8pdn3y3qzhjfrxsvmx3plg51m1aqgbzs000yxf";
|
|
|
|
stripLen = 2;
|
|
|
|
addPrefixes = true;
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
|
|
|
jailbreak = true;
|
|
|
|
})).override {
|
|
|
|
haskell-src-exts = self.haskell-src-exts-simple;
|
|
|
|
};
|
|
|
|
|
|
|
|
# Needs new version.
|
2016-12-12 21:54:28 +00:00
|
|
|
haskell-src-exts-simple = super.haskell-src-exts-simple.override { haskell-src-exts = self.haskell-src-exts_1_19_1; };
|
2016-11-20 14:41:20 +00:00
|
|
|
|
2016-09-30 20:15:25 +01:00
|
|
|
# Test suite fails a QuickCheck property.
|
|
|
|
optparse-applicative_0_13_0_0 = dontCheck super.optparse-applicative_0_13_0_0;
|
|
|
|
|
2016-08-06 16:19:18 +01:00
|
|
|
# GLUT uses `dlopen` to link to freeglut, so we need to set the RUNPATH correctly for
|
|
|
|
# it to find `libglut.so` from the nix store. We do this by patching GLUT.cabal to pkg-config
|
|
|
|
# depend on freeglut, which provides GHC to necessary information to generate a correct RPATH.
|
|
|
|
#
|
|
|
|
# Note: Simply patching the dynamic library (.so) of the GLUT build will *not* work, since the
|
|
|
|
# RPATH also needs to be propagated when using static linking. GHC automatically handles this for
|
|
|
|
# us when we patch the cabal file (Link options will be recored in the ghc package registry).
|
|
|
|
GLUT = addPkgconfigDepend (appendPatch super.GLUT ./patches/GLUT.patch) pkgs.freeglut;
|
|
|
|
|
2016-09-10 19:59:45 +01:00
|
|
|
# https://github.com/Philonous/hs-stun/pull/1
|
|
|
|
# Remove if a version > 0.1.0.1 ever gets released.
|
2016-08-11 16:41:06 +01:00
|
|
|
stunclient = overrideCabal super.stunclient (drv: {
|
|
|
|
postPatch = (drv.postPatch or "") + ''
|
|
|
|
substituteInPlace source/Network/Stun/MappedAddress.hs --replace "import Network.Endian" ""
|
|
|
|
'';
|
|
|
|
});
|
|
|
|
|
2016-09-10 21:00:45 +01:00
|
|
|
idris = overrideCabal super.idris (drv: {
|
|
|
|
# "idris" binary cannot find Idris library otherwise while building. After
|
|
|
|
# installing it's completely fine though. This seems like a bug in Idris
|
|
|
|
# that's related to builds with shared libraries enabled. It would be great
|
|
|
|
# if someone who knows a thing or two about Idris could look into this.
|
|
|
|
preBuild = "export LD_LIBRARY_PATH=$PWD/dist/build:$LD_LIBRARY_PATH";
|
|
|
|
# https://github.com/idris-lang/Idris-dev/issues/2499
|
|
|
|
librarySystemDepends = (drv.librarySystemDepends or []) ++ [pkgs.gmp];
|
2016-09-18 11:13:10 +01:00
|
|
|
# test suite cannot find its own "idris" binary
|
|
|
|
doCheck = false;
|
2016-09-10 21:00:45 +01:00
|
|
|
});
|
|
|
|
|
2016-12-05 17:04:24 +00:00
|
|
|
# https://github.com/bos/math-functions/issues/25
|
|
|
|
math-functions = dontCheck super.math-functions;
|
|
|
|
|
2016-11-02 07:39:39 +00:00
|
|
|
# http-api-data_0.3.x requires QuickCheck > 2.9, but overriding that version
|
|
|
|
# is hard because of transitive dependencies, so we just disable tests.
|
2016-11-15 08:50:43 +00:00
|
|
|
http-api-data_0_3_3 = dontCheck super.http-api-data_0_3_3;
|
2016-11-02 07:39:39 +00:00
|
|
|
|
|
|
|
# Fix build for latest versions of servant and servant-client.
|
|
|
|
servant_0_9_1_1 = super.servant_0_9_1_1.overrideScope (self: super: {
|
2016-11-15 08:50:43 +00:00
|
|
|
http-api-data = self.http-api-data_0_3_3;
|
2016-11-02 07:39:39 +00:00
|
|
|
});
|
|
|
|
servant-client_0_9_1_1 = super.servant-client_0_9_1_1.overrideScope (self: super: {
|
2016-11-15 08:50:43 +00:00
|
|
|
http-api-data = self.http-api-data_0_3_3;
|
2016-11-02 07:39:39 +00:00
|
|
|
servant-server = self.servant-server_0_9_1_1;
|
|
|
|
servant = self.servant_0_9_1_1;
|
|
|
|
});
|
|
|
|
|
2016-09-17 18:49:38 +01:00
|
|
|
# https://github.com/pontarius/pontarius-xmpp/issues/105
|
|
|
|
pontarius-xmpp = dontCheck super.pontarius-xmpp;
|
|
|
|
|
2016-10-01 18:35:10 +01:00
|
|
|
# https://github.com/fpco/store/issues/77
|
|
|
|
store = dontCheck super.store;
|
2016-11-02 07:30:31 +00:00
|
|
|
store_0_3 = super.store_0_3.overrideScope (self: super: { store-core = self.store-core_0_3; });
|
2016-10-30 15:29:07 +00:00
|
|
|
|
2016-10-05 20:06:39 +01:00
|
|
|
# https://github.com/bmillwood/applicative-quoters/issues/6
|
|
|
|
applicative-quoters = doJailbreak super.applicative-quoters;
|
|
|
|
|
2016-10-17 21:17:33 +01:00
|
|
|
# https://github.com/roelvandijk/terminal-progress-bar/issues/13
|
|
|
|
terminal-progress-bar = doJailbreak super.terminal-progress-bar;
|
|
|
|
|
2016-10-05 20:06:39 +01:00
|
|
|
# https://github.com/vshabanov/HsOpenSSL/issues/11
|
|
|
|
HsOpenSSL = doJailbreak super.HsOpenSSL;
|
|
|
|
|
2016-10-28 15:09:57 +01:00
|
|
|
# https://github.com/NixOS/nixpkgs/issues/19612
|
|
|
|
wai-app-file-cgi = (dontCheck super.wai-app-file-cgi).overrideScope (self: super: {
|
2017-01-03 22:28:58 +00:00
|
|
|
http-client = self.http-client_0_5_5;
|
2016-10-28 15:09:57 +01:00
|
|
|
http-client-tls = self.http-client-tls_0_3_3;
|
|
|
|
http-conduit = self.http-conduit_2_2_3;
|
|
|
|
});
|
|
|
|
|
2016-10-29 15:58:35 +01:00
|
|
|
# https://hydra.nixos.org/build/42769611/nixlog/1/raw
|
|
|
|
# note: the library is unmaintained, no upstream issue
|
|
|
|
dataenc = doJailbreak super.dataenc;
|
|
|
|
|
2016-11-01 17:36:27 +00:00
|
|
|
libsystemd-journal = overrideCabal super.libsystemd-journal (old: {
|
|
|
|
librarySystemDepends = old.librarySystemDepends or [] ++ [ pkgs.systemd ];
|
|
|
|
});
|
|
|
|
|
2016-11-02 15:22:29 +00:00
|
|
|
# horribly outdated (X11 interface changed a lot)
|
|
|
|
sindre = markBroken super.sindre;
|
|
|
|
|
2016-11-05 11:43:16 +00:00
|
|
|
# https://github.com/jmillikin/haskell-dbus/pull/7
|
|
|
|
# http://hydra.cryp.to/build/498404/log/raw
|
|
|
|
dbus = dontCheck (appendPatch super.dbus ./patches/hdbus-semicolons.patch);
|
|
|
|
|
2016-11-07 07:25:33 +00:00
|
|
|
# Test suite occasionally runs for 1+ days on Hydra.
|
|
|
|
distributed-process-tests = dontCheck super.distributed-process-tests;
|
|
|
|
|
2016-11-09 07:42:38 +00:00
|
|
|
# https://github.com/mulby/diff-parse/issues/9
|
|
|
|
diff-parse = doJailbreak super.diff-parse;
|
|
|
|
|
2016-11-09 19:45:52 +00:00
|
|
|
# https://github.com/josefs/STMonadTrans/issues/4
|
|
|
|
STMonadTrans = dontCheck super.STMonadTrans;
|
|
|
|
|
2016-11-20 00:28:46 +00:00
|
|
|
socket_0_7_0_0 = super.socket_0_7_0_0.overrideScope (self: super: { QuickCheck = self.QuickCheck_2_9_2; });
|
2016-11-20 16:23:48 +00:00
|
|
|
|
2016-11-20 15:59:33 +00:00
|
|
|
# Encountered missing dependencies: hspec >=1.3 && <2.1
|
|
|
|
# https://github.com/rampion/ReadArgs/issues/8
|
|
|
|
ReadArgs = doJailbreak super.ReadArgs;
|
|
|
|
|
2016-11-29 01:18:21 +00:00
|
|
|
# https://github.com/philopon/barrier/issues/3
|
|
|
|
barrier = doJailbreak super.barrier;
|
2016-11-28 17:03:29 +00:00
|
|
|
|
|
|
|
# requires vty 5.13
|
2016-12-04 19:43:50 +00:00
|
|
|
brick = super.brick.overrideScope (self: super: { vty = self.vty_5_14; });
|
2016-11-28 17:03:29 +00:00
|
|
|
|
2016-12-14 19:17:48 +00:00
|
|
|
# https://github.com/krisajenkins/elm-export/pull/22
|
|
|
|
elm-export = doJailbreak super.elm-export;
|
2015-01-10 09:03:53 +00:00
|
|
|
}
|