2017-02-02 15:49:28 +00:00
# COMMON OVERRIDES FOR THE HASKELL PACKAGE SET IN NIXPKGS
#
# This file contains haskell package overrides that are shared by all
# haskell package sets provided by nixpkgs and distributed via the official
# NixOS hydra instance.
#
# Overrides that would also make sense for custom haskell package sets not provided
# as part of nixpkgs and that are specific to Nix should go in configuration-nix.nix
#
# See comment at the top of configuration-nix.nix for more information about this
# distinction.
2018-07-04 12:18:21 +01:00
{ pkgs , haskellLib }:
2015-01-07 19:31:32 +00:00
2017-08-01 17:44:08 +01:00
with haskellLib ;
2015-01-07 19:31:32 +00:00
self : super : {
2017-07-26 09:09:05 +01:00
# This used to be a core package provided by GHC, but then the compiler
# dropped it. We define the name here to make sure that old packages which
# depend on this library still evaluate (even though they won't compile
# successfully with recent versions of the compiler).
bin-package-db = null ;
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 ;
2017-07-26 08:26:18 +01:00
ghcjs-prim = null ;
2016-11-16 12:42:54 +00:00
2017-09-25 08:45:27 +01:00
# Some packages add this (non-existent) dependency to express that they
# cannot compile in a given configuration. Win32 does this, for example, when
# compiled on Linux. We provide the name to avoid evaluation errors.
unbuildable = throw " p a c k a g e d e p e n d s o n m e t a p a c k a g e ' u n b u i l d a b l e ' " ;
2018-03-29 16:02:50 +01:00
# Use the latest version of the Cabal library.
2018-11-26 10:19:28 +00:00
cabal-install = super . cabal-install . overrideScope ( self : super : { Cabal = self . Cabal_2_4_1_0 ; } ) ;
2018-03-29 16:02:50 +01:00
2018-04-02 18:35:19 +01:00
# The test suite depends on old versions of tasty and QuickCheck.
hackage-security = dontCheck super . hackage-security ;
2015-01-07 19:31:32 +00:00
2016-12-08 16:32:27 +00:00
# enable using a local hoogle with extra packagages in the database
2017-08-06 20:46:22 +01:00
# nix-shell -p "haskellPackages.hoogleLocal { packages = with haskellPackages; [ mtl lens ]; }"
2016-12-08 16:32:27 +00:00
# $ hoogle server
hoogleLocal = { packages ? [ ] }: self . callPackage ./hoogle.nix { inherit packages ; } ;
2019-06-01 16:44:48 +01:00
# Needs older QuickCheck version
attoparsec-varword = dontCheck super . attoparsec-varword ;
# Tests are failing
# https://github.com/bos/statistics/issues/123
2015-01-10 19:27:16 +00:00
statistics = dontCheck super . statistics ;
2017-09-29 17:56:41 +01:00
2018-06-25 21:05:53 +01:00
# These packages (and their reverse deps) cannot be built with profiling enabled.
ghc-heap-view = disableLibraryProfiling super . ghc-heap-view ;
ghc-datasize = disableLibraryProfiling super . ghc-datasize ;
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 ;
2017-02-04 00:19:08 +00:00
# check requires mysql server
mysql-simple = dontCheck super . mysql-simple ;
2017-03-27 08:34:37 +01:00
mysql-haskell = dontCheck super . mysql-haskell ;
2017-02-04 00:19:08 +00:00
2019-06-01 16:44:48 +01:00
# Tests failing, fixed once 0.8.0 is in stackage
# https://gitlab.com/twittner/zeromq-haskell/issues/63
zeromq4-haskell = dontCheck super . zeromq4-haskell ;
2015-01-13 18:36:36 +00:00
2017-03-02 11:17:36 +00:00
# The Hackage tarball is purposefully broken, because it's not intended to be, like, useful.
# https://git-annex.branchable.com/bugs/bash_completion_file_is_missing_in_the_6.20160527_tarball_on_hackage/
2018-07-10 15:06:19 +01:00
git-annex = ( overrideSrc super . git-annex {
2017-03-02 11:17:36 +00:00
src = pkgs . fetchgit {
2018-07-10 15:06:19 +01:00
name = " g i t - a n n e x - ${ super . git-annex . version } - s r c " ;
2017-03-02 11:17:36 +00:00
url = " g i t : / / g i t - a n n e x . b r a n c h a b l e . c o m / " ;
2018-07-10 15:06:19 +01:00
rev = " r e f s / t a g s / " + super . git-annex . version ;
2019-06-19 15:58:53 +01:00
sha256 = " 1 j q s v 0 2 w 8 4 r 3 g x p 5 c i h w k w 3 s z 0 6 n 3 2 z 7 2 k v r d g 0 h k q 9 9 7 p v 4 v m 6 a " ;
2016-06-07 17:10:08 +01:00
} ;
2018-07-10 15:06:19 +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 ;
2017-06-25 20:23:28 +01:00
} ;
2018-12-04 11:33:48 +00:00
2017-08-15 05:02:19 +01:00
# Fix test trying to access /home directory
2018-10-07 15:45:05 +01:00
shell-conduit = overrideCabal super . shell-conduit ( drv : {
2017-08-15 05:02:19 +01:00
postPatch = " s e d - i s / h o m e / t m p / t e s t / S p e c . h s " ;
2017-09-13 20:04:53 +01:00
# the tests for shell-conduit on Darwin illegitimatey assume non-GNU echo
# see: https://github.com/psibi/shell-conduit/issues/12
2018-03-14 23:51:09 +00:00
doCheck = ! pkgs . stdenv . isDarwin ;
2018-03-25 14:50:26 +01:00
} ) ;
2017-08-15 05:02:19 +01:00
2015-09-02 11:27:36 +01:00
# https://github.com/froozen/kademlia/issues/2
kademlia = dontCheck super . kademlia ;
2019-06-01 16:44:48 +01:00
# Tests require older tasty
2017-02-02 15:49:28 +00:00
hzk = dontCheck super . hzk ;
2018-03-14 19:49:01 +00:00
2017-10-16 12:08:10 +01:00
# Tests require a Kafka broker running locally
2017-02-02 15:49:28 +00:00
haskakafka = dontCheck super . haskakafka ;
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-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.
bytestring-progress = dontHaddock super . bytestring-progress ;
2015-01-21 09:22:30 +00:00
deepseq-magic = dontHaddock super . deepseq-magic ;
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
hoodle-core = dontHaddock super . hoodle-core ;
hsc3-db = dontHaddock super . hsc3-db ;
2019-05-02 19:14:01 +01:00
classy-prelude-yesod = dontHaddock super . classy-prelude-yesod ; # https://github.com/haskell/haddock/issues/979
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
2017-02-12 13:13:53 +00:00
# sse2 flag due to https://github.com/haskell/vector/issues/47.
# dontCheck due to https://github.com/haskell/vector/issues/138
vector = dontCheck ( if pkgs . stdenv . isi686 then appendConfigureFlag super . vector " - - g h c - o p t i o n s = - m s s e 2 " else super . vector ) ;
2015-01-14 15:02:51 +00:00
2019-02-14 19:06:09 +00:00
conduit-extra = if pkgs . stdenv . isDarwin
then super . conduit-extra . overrideAttrs ( drv : { __darwinAllowLocalNetworking = true ; } )
else super . conduit-extra ;
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 = [ ] ;
} ) )
2019-05-22 11:56:38 +01:00
else super . hakyll ;
2016-10-27 23:10:39 +01:00
2015-06-21 08:57:50 +01:00
double-conversion = if ! pkgs . stdenv . isDarwin
2017-08-06 09:38:44 +01:00
then super . double-conversion
2017-10-09 13:42:29 +01:00
else addExtraLibrary super . double-conversion pkgs . libcxx ;
2015-06-21 08:57:50 +01:00
2019-07-04 09:16:38 +01:00
inline-c-cpp = overrideCabal super . inline-c-cpp ( drv : {
postPatch = ( drv . postPatch or " " ) + ''
substituteInPlace inline-c-cpp . cabal - - replace " - o p t c - s t d = c + + 1 1 " " "
'' ;
} ) ;
2016-06-16 00:03:22 +01:00
2017-07-07 11:49:45 +01:00
inline-java = addBuildDepend super . inline-java pkgs . jdk ;
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-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 ;
2018-07-10 00:23:50 +01:00
# Test suite build depends on ancient tasty 0.11.x.
2018-05-15 02:28:39 +01:00
cryptohash-sha512 = dontCheck super . cryptohash-sha512 ;
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 ;
2017-05-07 11:46:49 +01:00
postgrest-ws = dontCheck super . postgrest-ws ;
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
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
2017-10-16 12:08:10 +01:00
# base bound
digit = doJailbreak super . digit ;
2018-07-19 19:18:44 +01:00
# dontCheck: Can be removed once https://github.com/haskell-nix/hnix/commit/471712f is in (5.2 probably)
# This is due to GenList having been removed from generic-random in 1.2.0.0
# doJailbreak: Can be removed once https://github.com/haskell-nix/hnix/pull/329 is in (5.2 probably)
# This is due to hnix currently having an upper bound of <0.5 on deriving-compat, works just fine with our current version 0.5.1 though
2018-11-03 23:45:14 +00:00
hnix =
generateOptparseApplicativeCompletion " h n i x " (
dontCheck ( doJailbreak ( overrideCabal super . hnix ( old : {
testHaskellDepends = old . testHaskellDepends or [ ] ++ [ pkgs . nix ] ;
} ) ) ) ) ;
2015-01-20 16:22:26 +00:00
2015-01-20 16:28:50 +00:00
# Fails for non-obvious reasons while attempting to use doctest.
search = dontCheck super . search ;
2018-11-10 16:07:54 +00:00
# see https://github.com/LumiGuide/haskell-opencv/commit/cd613e200aa20887ded83256cf67d6903c207a60
opencv = dontCheck ( appendPatch super . opencv ./patches/opencv-fix-116.patch ) ;
opencv-extra = dontCheck ( appendPatch super . opencv-extra ./patches/opencv-fix-116.patch ) ;
2015-01-20 16:28:50 +00:00
# https://github.com/ekmett/structures/issues/3
structures = dontCheck super . structures ;
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
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 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
2017-03-19 21:21:34 +00:00
friday-juicypixels = dontCheck super . friday-juicypixels ; #tarball missing test/rgba8.png
2015-01-20 16:28:50 +00:00
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 ;
hath = dontCheck super . hath ;
2018-02-05 18:00:12 +00:00
haxl = dontCheck super . haxl ; # non-deterministic failure https://github.com/facebook/Haxl/issues/85
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 ;
2018-05-30 00:26:30 +01:00
hlibgit2 = disableHardening super . hlibgit2 [ " f o r m a t " ] ;
2015-01-20 16:28:50 +00:00
hmatrix-tests = dontCheck super . hmatrix-tests ;
hquery = dontCheck super . hquery ;
hs2048 = dontCheck super . hs2048 ;
hsbencher = dontCheck super . hsbencher ;
hsexif = dontCheck super . hsexif ;
hspec-server = dontCheck super . hspec-server ;
2018-07-04 12:18:21 +01:00
HTF = dontCheck super . HTF ;
2015-01-20 16:28:50 +00:00
htsn = dontCheck super . htsn ;
htsn-import = dontCheck super . htsn-import ;
2018-06-06 16:40:35 +01:00
http-link-header = dontCheck super . http-link-header ; # non deterministic failure https://hydra.nixos.org/build/75041105
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 ;
2018-10-16 01:07:27 +01:00
language-nix = if ( pkgs . stdenv . hostPlatform . isAarch64 || pkgs . stdenv . hostPlatform . isi686 ) then dontCheck super . language-nix else super . language-nix ; # aarch64: https://ghc.haskell.org/trac/ghc/ticket/15275
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 ;
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 ) [ " f o r m a t " ] ;
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 ;
2018-12-13 15:46:22 +00:00
modular-arithmetic = dontCheck super . modular-arithmetic ; # tests require a very old Glob (0.7.*)
2015-01-20 16:28:50 +00:00
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 ;
2018-06-18 20:50:57 +01:00
odpic-raw = dontCheck super . odpic-raw ; # needs a running oracle database server
2015-01-20 16:28:50 +00:00
opaleye = dontCheck super . opaleye ;
openpgp = dontCheck super . openpgp ;
optional = dontCheck super . optional ;
2017-02-13 14:13:02 +00:00
orgmode-parse = dontCheck super . orgmode-parse ;
2015-01-20 16:28:50 +00:00
os-release = dontCheck super . os-release ;
2018-09-19 14:45:15 +01:00
pandoc-crossref = dontCheck super . pandoc-crossref ; # (most likely change when no longer 0.3.2.1) https://github.com/lierdakil/pandoc-crossref/issues/199
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 ;
2019-01-30 08:00:27 +00:00
posix-pty = dontCheck super . posix-pty ; # https://github.com/merijn/posix-pty/issues/12
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 ;
2019-06-09 03:12:33 +01:00
reflex = dontCheck super . reflex ; # test suite uses hlint, which has different haskell-src-exts version
2015-01-20 16:28:50 +00:00
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 ;
2018-11-02 23:11:11 +00:00
sdl2 = dontCheck super . sdl2 ; # the test suite needs an x server
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 ;
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
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 ;
2018-07-22 14:17:27 +01:00
# https://github.com/kim/snappy-framing/issues/3
snappy-framing = dontHaddock super . snappy-framing ;
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-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-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-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
2018-05-28 16:28:53 +01:00
# Should not appear in nixpkgs yet (broken anyway)
yarn2nix = throw " y a r n 2 n i x i s n o t y e t p a c k a g e d f o r n i x p k g s . S e e h t t p s : / / g i t h u b . c o m / P r o f p a t s c h / y a r n 2 n i x # y a r n 2 n i x " ;
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 = " l o c a l " ; } ) ;
2015-02-20 12:31:43 +00:00
# https://github.com/vincenthz/hs-asn1/issues/12
asn1-encoding = dontCheck super . asn1-encoding ;
2018-03-15 14:06:01 +00:00
# Avoid "QuickCheck >=2.3 && <2.10" dependency we cannot fulfill in lts-11.x.
test-framework = dontCheck super . test-framework ;
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-03-04 13:37:05 +00:00
# https://github.com/PaulJohnson/geodetics/issues/1
geodetics = dontCheck super . geodetics ;
# https://github.com/junjihashimoto/test-sandbox-compose/issues/2
test-sandbox-compose = dontCheck super . test-sandbox-compose ;
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-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
2018-03-20 12:34:06 +00:00
# Test suite won't compile against tasty-hunit 0.10.x.
binary-parser = dontCheck super . binary-parser ;
2018-12-08 21:17:40 +00:00
binary-parsers = dontCheck super . binary-parsers ;
2018-03-20 12:34:06 +00:00
bytestring-strict-builder = dontCheck super . bytestring-strict-builder ;
bytestring-tree-builder = dontCheck super . bytestring-tree-builder ;
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 ;
2018-07-24 00:42:43 +01:00
# Missing file in source distribution:
# - https://github.com/karun012/doctest-discover/issues/22
# - https://github.com/karun012/doctest-discover/issues/23
#
# When these are fixed the following needs to be enabled again:
#
# # Depends on itself for testing
# doctest-discover = addBuildTool super.doctest-discover
# (if pkgs.buildPlatform != pkgs.hostPlatform
# then self.buildHaskellPackages.doctest-discover
# else dontCheck super.doctest-discover);
doctest-discover = dontCheck super . doctest-discover ;
2017-01-24 10:57:09 +00:00
# Depends on itself for testing
2018-07-09 17:22:23 +01:00
tasty-discover = addBuildTool super . tasty-discover
( if pkgs . buildPlatform != pkgs . hostPlatform
then self . buildHaskellPackages . tasty-discover
else dontCheck super . tasty-discover ) ;
2017-01-24 10:57:09 +00:00
2017-10-16 12:08:10 +01:00
# generic-deriving bound is too tight
aeson = doJailbreak super . aeson ;
2015-05-09 11:18:04 +01:00
2019-01-05 04:08:53 +00:00
# containers >=0.4 && <0.6 is too tight
# https://github.com/RaphaelJ/friday/issues/34
friday = doJailbreak super . friday ;
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 ;
2018-07-10 16:05:03 +01:00
# https://github.com/haskell-hvr/lzma/issues/14
lzma = dontCheck super . lzma ;
2018-01-02 23:42:21 +00:00
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 ;
2017-10-16 12:08:10 +01:00
# QuickCheck version, also set in cabal2nix
2015-06-06 14:14:47 +01:00
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-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
2018-07-04 12:18:21 +01:00
# https://github.com/hspec/mockery/issues/6
mockery = overrideCabal super . mockery ( drv : { preCheck = " e x p o r t T R A V I S = t r u e " ; } ) ;
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 ;
2017-10-16 12:08:10 +01:00
# vector dependency < 0.12
imagemagick = doJailbreak super . imagemagick ;
2015-08-06 18:00:53 +01:00
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 ;
2018-01-18 21:12:56 +00:00
# Install icons, metadata and cli program.
2017-12-16 21:37:47 +00:00
bustle = overrideCabal super . bustle ( drv : {
buildDepends = [ pkgs . libpcap ] ;
2018-08-07 10:13:55 +01:00
buildTools = with pkgs . buildPackages ; [ gettext perl help2man ] ;
2017-12-16 21:37:47 +00:00
postInstall = ''
make install PREFIX = $ out
'' ;
} ) ;
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 = " e x p o r t H O M E = $ T M P D I R " ;
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 = ''
2017-07-11 13:44:41 +01:00
local lispdir = ( " $ d a t a / s h a r e / ${ self . ghc . name } / * / ${ drv . pname } - ${ drv . version } / e l i s p " )
2015-08-18 00:21:18 +01:00
make - C $ lispdir
2017-07-11 13:44:41 +01:00
mkdir - p $ data/share/emacs/site-lisp
ln - s " $ l i s p d i r / " * . el { , c } $ data/share/emacs/site-lisp /
2015-08-18 00:21:18 +01:00
'' ;
} ) ;
2017-12-14 11:59:23 +00:00
# Build the latest git version instead of the official release. This isn't
# ideal, but Chris doesn't seem to make official releases any more.
2018-07-10 15:11:19 +01:00
structured-haskell-mode = overrideCabal super . structured-haskell-mode ( drv : {
2017-08-01 14:35:44 +01:00
src = pkgs . fetchFromGitHub {
owner = " c h r i s d o n e " ;
repo = " s t r u c t u r e d - h a s k e l l - m o d e " ;
2018-07-10 15:11:19 +01:00
rev = " 7 f 9 d f 7 3 f 4 5 d 1 0 7 0 1 7 c 1 8 c e 4 8 3 5 b b c 1 9 0 d f e 6 7 8 2 e " ;
sha256 = " 1 j c c 3 0 0 4 8 j 3 6 9 j g s b b m k b 6 3 w h s 4 w b 3 7 b q 2 1 j r m 3 r 6 r y 2 2 i z n d s q a " ;
2017-08-01 14:35:44 +01:00
} ;
2018-07-10 15:11:19 +01:00
version = " 2 0 1 7 0 2 0 5 - g i t " ;
2017-08-01 14:35:44 +01:00
editedCabalFile = null ;
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 = ''
2017-08-01 14:24:20 +01:00
local lispdir = ( " $ d a t a / s h a r e / ${ self . ghc . name } / " * " / ${ drv . pname } - " * " / e l i s p " )
mkdir - p $ data/share/emacs
ln - s $ lispdir $ data/share/emacs/site-lisp
2015-08-18 00:21:53 +01:00
'' ;
2018-07-10 15:11:19 +01:00
} ) ;
descriptive = overrideSrc super . descriptive {
version = " 2 0 1 8 0 5 1 4 - g i t " ;
src = pkgs . fetchFromGitHub {
owner = " c h r i s d o n e " ;
repo = " d e s c r i p t i v e " ;
rev = " c 0 8 8 9 6 0 1 1 3 b 2 a d d 7 5 8 5 5 3 e 4 1 c b e 4 3 9 d 1 8 3 b 7 5 0 c d " ;
sha256 = " 1 7 p 6 5 i h c v m 1 g h q 2 3 w w 6 p h h 8 g d j 7 h w x l y p j v h 9 j a b s x v f b p 2 s 8 m r k " ;
} ;
2018-03-15 20:12:58 +00:00
} ;
2015-08-18 00:21:53 +01:00
2017-08-01 14:24:57 +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 = ''
2017-08-01 14:24:57 +01:00
local lispdir = ( " $ d a t a / s h a r e / ${ self . ghc . name } / " * " / ${ drv . pname } - " * " / e l i s p " )
mkdir - p $ data/share/emacs
ln - s $ lispdir $ data/share/emacs/site-lisp
2015-08-18 11:59:36 +01:00
'' ;
2016-09-19 16:04:52 +01:00
doCheck = false ; # https://github.com/chrisdone/hindent/issues/299
2018-03-14 23:49:44 +00:00
} ) ) ;
2015-08-18 11:59:36 +01:00
2015-08-18 21:54:42 +01:00
# https://github.com/bos/configurator/issues/22
configurator = dontCheck super . configurator ;
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 ;
2018-08-25 19:56:21 +01:00
# https://github.com/ashutoshrishi/hunspell-hs/pull/3
hunspell-hs = addPkgconfigDepend ( dontCheck ( appendPatch super . hunspell-hs ./patches/hunspell.patch ) ) pkgs . hunspell ;
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 21:37:42 +01:00
# https://github.com/goldfirere/singletons/issues/122
singletons = dontCheck super . singletons ;
2018-10-15 22:11:32 +01:00
# Fix an aarch64 issue with cryptonite-0.25:
# https://github.com/haskell-crypto/cryptonite/issues/234
# This has been committed upstream, but there is, as of yet, no new release.
2018-12-09 16:46:38 +00:00
# Also, disable the test suite to avoid https://github.com/haskell-crypto/cryptonite/issues/260.
cryptonite = appendPatch ( dontCheck super . cryptonite ) ( pkgs . fetchpatch {
2018-10-15 22:11:32 +01:00
url = https://github.com/haskell-crypto/cryptonite/commit/4622e5fc8ece82f4cf31358e31cd02cf020e558e.patch ;
sha256 = " 1 m 2 d 4 7 n i 4 j b r p v x r y 5 0 i m j 9 1 q a h r 3 r 7 z k q m 1 5 7 c l r z l m w 6 g z p g n q " ;
} ) ;
2015-09-18 08:55:30 +01:00
2019-01-01 06:30:43 +00:00
# Djinn's last release was 2014, incompatible with Semigroup-Monoid Proposal
# https://github.com/augustss/djinn/pull/8
djinn = appendPatch super . djinn ( pkgs . fetchpatch {
url = https://github.com/augustss/djinn/commit/6cb9433a137fb6b5194afe41d616bd8b62b95630.patch ;
sha256 = " 0 s 0 2 1 y 5 n z r h 7 4 g f p 8 x p x p x m 1 1 i v z f s 3 j w g 6 m k r l y r y 3 i y 5 8 4 x q i l " ;
} ) ;
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 ;
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-05-30 12:51:15 +01:00
# Tools that use gtk2hs-buildtools now depend on them in a custom-setup stanza
2018-07-09 17:22:23 +01:00
cairo = addBuildTool super . cairo self . buildHaskellPackages . gtk2hs-buildtools ;
pango = disableHardening ( addBuildTool super . pango self . buildHaskellPackages . gtk2hs-buildtools ) [ " f o r t i f y " ] ;
2017-02-26 21:21:35 +00:00
gtk =
if pkgs . stdenv . isDarwin
then appendConfigureFlag super . gtk " - f h a v e - q u a r t z - g t k "
else super . gtk ;
2016-05-30 23:24:38 +01:00
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 " i m p o r t N e t w o r k . E n d i a n " " "
'' ;
} ) ;
2019-01-19 18:24:29 +00:00
# A simple MonadFail patch would do too, but not doing the tests is easier
megaparsec_6_5_0 = dontCheck super . megaparsec_6_5_0 ;
2017-12-04 12:54:15 +00:00
# The standard libraries are compiled separately
2018-11-03 23:45:14 +00:00
idris = generateOptparseApplicativeCompletion " i d r i s " (
2019-01-19 18:25:30 +00:00
doJailbreak ( dontCheck ( super . idris . override {
# Needed for versions <= 1.3.1 https://github.com/idris-lang/Idris-dev/pull/4610
megaparsec = self . megaparsec_6_5_0 ;
} ) )
2018-11-03 23:45:14 +00:00
) ;
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 ;
2017-01-15 00:21:36 +00:00
# build servant docs from the repository
servant =
let
ver = super . servant . version ;
docs = pkgs . stdenv . mkDerivation {
name = " s e r v a n t - s p h i n x - d o c u m e n t a t i o n - ${ ver } " ;
src = " ${ pkgs . fetchFromGitHub {
owner = " h a s k e l l - s e r v a n t " ;
repo = " s e r v a n t " ;
rev = " v ${ ver } " ;
2018-08-12 21:13:23 +01:00
sha256 = " 0 k q g l i h 3 r v 1 2 n m k z x v a l h f a a a f k 4 b 2 i r v v 9 x 5 x m c 4 8 i 1 n s 7 1 y 2 3 l " ;
2017-01-15 00:21:36 +00:00
} } /doc " ;
2019-02-02 10:56:04 +00:00
# Needed after sphinx 1.7.9 -> 1.8.3
postPatch = ''
substituteInPlace conf . py - - replace " ' . m d ' : C o m m o n M a r k P a r s e r , " " "
'' ;
2018-11-30 23:33:46 +00:00
nativeBuildInputs = with pkgs . buildPackages . pythonPackages ; [ sphinx recommonmark sphinx_rtd_theme ] ;
2017-01-15 00:21:36 +00:00
makeFlags = " h t m l " ;
installPhase = ''
mv _build/html $ out
'' ;
} ;
in overrideCabal super . servant ( old : {
postInstall = old . postInstall or " " + ''
2019-05-12 22:55:19 +01:00
ln - s $ { docs } '' ${ ! outputDoc } / s h a r e / d o c / s e r v a n t
2017-01-15 00:21:36 +00:00
'' ;
} ) ;
2016-09-17 18:49:38 +01:00
# https://github.com/pontarius/pontarius-xmpp/issues/105
pontarius-xmpp = dontCheck super . pontarius-xmpp ;
2017-03-22 00:25:47 +00:00
# fails with sandbox
yi-keymap-vim = dontCheck super . yi-keymap-vim ;
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
2017-10-16 12:08:10 +01:00
# Still needed because of HUnit < 1.6
2016-10-17 21:17:33 +01:00
terminal-progress-bar = doJailbreak super . terminal-progress-bar ;
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 ;
2017-02-15 14:44:30 +00:00
# https://github.com/divipp/ActiveHs-misc/issues/10
data-pprint = doJailbreak super . data-pprint ;
2016-11-02 15:22:29 +00:00
# horribly outdated (X11 interface changed a lot)
sindre = markBroken super . sindre ;
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 ;
2017-01-28 09:56:01 +00:00
# No upstream issue tracker
hspec-expectations-pretty-diff = dontCheck super . hspec-expectations-pretty-diff ;
2017-02-12 12:48:58 +00:00
# https://github.com/basvandijk/lifted-base/issues/34
2017-10-16 12:08:10 +01:00
# Still needed as HUnit < 1.5
2017-02-12 12:48:58 +00:00
lifted-base = doJailbreak super . lifted-base ;
2017-02-12 12:59:12 +00:00
# Don't depend on chell-quickcheck, which doesn't compile due to restricting
# QuickCheck to versions ">=2.3 && <2.9".
system-filepath = dontCheck super . system-filepath ;
2017-02-12 13:08:26 +00:00
# https://github.com/basvandijk/case-insensitive/issues/24
2017-10-16 12:08:10 +01:00
# Still needed as HUnit < 1.6
2017-02-12 13:08:26 +00:00
case-insensitive = doJailbreak super . case-insensitive ;
2017-02-12 13:39:00 +00:00
# https://github.com/hvr/uuid/issues/28
uuid-types = doJailbreak super . uuid-types ;
uuid = doJailbreak super . uuid ;
2017-02-12 17:04:17 +00:00
# https://github.com/ekmett/lens/issues/713
lens = disableCabalFlag super . lens " t e s t - d o c t e s t s " ;
2017-02-14 12:23:12 +00:00
# https://github.com/haskell/fgl/issues/60
2017-10-16 12:08:10 +01:00
# Needed for QuickCheck < 2.10
2018-05-29 23:19:10 +01:00
fgl = dontCheck super . fgl ;
2017-02-14 12:23:12 +00:00
fgl-arbitrary = doJailbreak super . fgl-arbitrary ;
2017-10-16 12:08:10 +01:00
# The tests spuriously fail
libmpd = dontCheck super . libmpd ;
2017-03-01 16:25:17 +00:00
2017-03-02 10:03:25 +00:00
# https://github.com/dan-t/cabal-lenses/issues/6
2017-03-01 16:25:17 +00:00
cabal-lenses = doJailbreak super . cabal-lenses ;
2017-02-28 13:53:33 +00:00
2017-03-03 10:45:08 +00:00
# https://github.com/fizruk/http-api-data/issues/49
http-api-data = dontCheck super . http-api-data ;
2017-03-04 13:03:24 +00:00
# https://github.com/diagrams/diagrams-lib/issues/288
diagrams-lib = overrideCabal super . diagrams-lib ( drv : { doCheck = ! pkgs . stdenv . isi686 ; } ) ;
2017-03-08 16:18:18 +00:00
# https://github.com/danidiaz/streaming-eversion/issues/1
streaming-eversion = dontCheck super . streaming-eversion ;
2017-03-13 11:27:08 +00:00
2017-03-31 10:15:17 +01:00
# https://github.com/danidiaz/tailfile-hinotify/issues/2
tailfile-hinotify = dontCheck super . tailfile-hinotify ;
2017-05-26 19:32:39 +01:00
2017-06-16 12:34:17 +01:00
# Test suite fails: https://github.com/lymar/hastache/issues/46.
# Don't install internal mkReadme tool.
hastache = overrideCabal super . hastache ( drv : {
doCheck = false ;
postInstall = " r m $ o u t / b i n / m k R e a d m e & & r m d i r $ o u t / b i n " ;
} ) ;
2017-07-18 15:50:20 +01:00
# Has a dependency on outdated versions of directory.
cautious-file = doJailbreak ( dontCheck super . cautious-file ) ;
2017-07-20 07:40:56 +01:00
# https://github.com/diagrams/diagrams-solve/issues/4
diagrams-solve = dontCheck super . diagrams-solve ;
2017-07-27 15:09:39 +01:00
# test suite does not compile with recent versions of QuickCheck
integer-logarithms = dontCheck ( super . integer-logarithms ) ;
2017-08-08 19:56:31 +01:00
# missing dependencies: blaze-html >=0.5 && <0.9, blaze-markup >=0.5 && <0.8
digestive-functors-blaze = doJailbreak super . digestive-functors-blaze ;
2017-10-16 12:08:10 +01:00
digestive-functors = doJailbreak super . digestive-functors ;
2017-08-08 19:56:31 +01:00
2017-08-08 22:28:31 +01:00
# missing dependencies: doctest ==0.12.*
html-entities = doJailbreak super . html-entities ;
2017-09-01 12:38:24 +01:00
# https://github.com/takano-akio/filelock/issues/5
filelock = dontCheck super . filelock ;
2019-05-02 09:17:09 +01:00
# Wrap the generated binaries to include their run-time dependencies in
# $PATH. Also, cryptol needs a version of sbl that's newer than what we have
# in LTS-13.x.
2019-06-13 21:01:32 +01:00
cryptol = overrideCabal ( super . cryptol . override { sbv = self . sbv_8_3 ; } ) ( drv : {
2019-04-02 23:39:53 +01:00
buildTools = drv . buildTools or [ ] ++ [ pkgs . makeWrapper ] ;
postInstall = drv . postInstall or " " + ''
for b in $ out/bin/cryptol $ out/bin/cryptol-html ; do
wrapProgram $ b - - prefix ' PATH' ' : ' " ${ pkgs . lib . getBin pkgs . z3 } / b i n "
done
'' ;
2019-05-02 09:17:09 +01:00
} ) ;
2017-09-14 13:53:47 +01:00
2017-10-16 12:08:10 +01:00
# Tests try to invoke external process and process == 1.4
2017-09-10 10:17:24 +01:00
grakn = dontCheck ( doJailbreak super . grakn ) ;
2017-09-10 11:09:23 +01:00
2017-09-22 05:50:11 +01:00
# test suite requires git and does a bunch of git operations
2017-12-29 15:45:38 +00:00
# doJailbreak because of hardcoded time, seems to be fixed upstream
restless-git = dontCheck ( doJailbreak super . restless-git ) ;
2017-09-28 11:27:19 +01:00
2017-10-17 10:52:02 +01:00
# Depends on broken fluid.
fluid-idl-http-client = markBroken super . fluid-idl-http-client ;
2017-10-18 08:53:07 +01:00
fluid-idl-scotty = markBroken super . fluid-idl-scotty ;
2017-10-17 10:52:02 +01:00
2018-04-28 11:43:19 +01:00
# Work around https://github.com/haskell/c2hs/issues/192.
c2hs = dontCheck super . c2hs ;
2017-11-10 18:26:24 +00:00
2017-12-04 22:29:47 +00:00
# Needs pginit to function and pgrep to verify.
tmp-postgres = overrideCabal super . tmp-postgres ( drv : {
libraryToolDepends = drv . libraryToolDepends or [ ] ++ [ pkgs . postgresql ] ;
testToolDepends = drv . testToolDepends or [ ] ++ [ pkgs . procps ] ;
} ) ;
2017-12-11 13:33:32 +00:00
2017-12-19 21:11:13 +00:00
# Needs QuickCheck <2.10, which we don't have.
2017-12-19 20:59:01 +00:00
edit-distance = doJailbreak super . edit-distance ;
2017-12-19 21:11:13 +00:00
blaze-markup = doJailbreak super . blaze-markup ;
2017-12-19 21:15:18 +00:00
blaze-html = doJailbreak super . blaze-html ;
2017-12-19 21:13:37 +00:00
attoparsec = dontCheck super . attoparsec ; # 1 out of 67 tests fails
2017-12-19 21:49:40 +00:00
int-cast = doJailbreak super . int-cast ;
2017-12-19 21:58:06 +00:00
nix-derivation = doJailbreak super . nix-derivation ;
2017-12-19 20:59:01 +00:00
2017-12-20 12:17:19 +00:00
# Needs QuickCheck <2.10, HUnit <1.6 and base <4.10
pointfree = doJailbreak super . pointfree ;
2017-12-19 21:03:14 +00:00
# Needs tasty-quickcheck ==0.8.*, which we don't have.
2018-05-29 23:07:19 +01:00
cryptohash-sha256 = dontCheck super . cryptohash-sha256 ;
2017-12-19 21:10:41 +00:00
cryptohash-sha1 = doJailbreak super . cryptohash-sha1 ;
cryptohash-md5 = doJailbreak super . cryptohash-md5 ;
2017-12-19 21:43:37 +00:00
text-short = doJailbreak super . text-short ;
2018-01-17 16:18:16 +00:00
gitHUD = dontCheck super . gitHUD ;
2018-11-19 14:33:29 +00:00
githud = dontCheck super . githud ;
2017-12-19 21:03:14 +00:00
2017-12-19 22:03:16 +00:00
# https://github.com/aisamanra/config-ini/issues/12
config-ini = dontCheck super . config-ini ;
2017-12-19 22:26:42 +00:00
# doctest >=0.9 && <0.12
genvalidity-property = doJailbreak super . genvalidity-property ;
2017-12-19 22:27:39 +00:00
path = dontCheck super . path ;
2017-12-19 22:26:42 +00:00
2017-10-16 12:08:10 +01:00
# Test suite fails due to trying to create directories
path-io = dontCheck super . path-io ;
2017-12-19 22:29:20 +00:00
# Duplicate instance with smallcheck.
store = dontCheck super . store ;
2017-12-20 14:00:20 +00:00
# With ghc-8.2.x haddock would time out for unknown reason
# See https://github.com/haskell/haddock/issues/679
language-puppet = dontHaddock super . language-puppet ;
2018-06-26 20:33:14 +01:00
filecache = overrideCabal super . filecache ( drv : { doCheck = ! pkgs . stdenv . isDarwin ; } ) ;
2017-12-20 14:00:20 +00:00
2017-12-22 17:48:07 +00:00
# https://github.com/alphaHeavy/protobuf/issues/34
protobuf = dontCheck super . protobuf ;
2017-12-22 18:54:01 +00:00
2018-01-02 21:07:29 +00:00
# https://github.com/bos/text-icu/issues/32
text-icu = dontCheck super . text-icu ;
2018-03-14 20:08:43 +00:00
# aarch64 and armv7l fixes.
treewide: isArm -> isAarch32
Following legacy packing conventions, `isArm` was defined just for
32-bit ARM instruction set. This is confusing to non packagers though,
because Aarch64 is an ARM instruction set.
The official ARM overview for ARMv8[1] is surprisingly not confusing,
given the overall state of affairs for ARM naming conventions, and
offers us a solution. It divides the nomenclature into three levels:
```
ISA: ARMv8 {-A, -R, -M}
/ \
Mode: Aarch32 Aarch64
| / \
Encoding: A64 A32 T32
```
At the top is the overall v8 instruction set archicture. Second are the
two modes, defined by bitwidth but differing in other semantics too, and
buttom are the encodings, (hopefully?) isomorphic if they encode the
same mode.
The 32 bit encodings are mostly backwards compatible with previous
non-Thumb and Thumb encodings, and if so we can pun the mode names to
instead mean "sets of compatable or isomorphic encodings", and then
voilà we have nice names for 32-bit and 64-bit arm instruction sets
which do not use the word ARM so as to not confused either laymen or
experienced ARM packages.
[1]: https://developer.arm.com/products/architecture/a-profile
2018-03-20 02:41:06 +00:00
happy = if ( pkgs . stdenv . hostPlatform . isAarch32 || pkgs . stdenv . hostPlatform . isAarch64 ) then dontCheck super . happy else super . happy ; # Similar to https://ghc.haskell.org/trac/ghc/ticket/13062
hashable = if ( pkgs . stdenv . hostPlatform . isAarch32 || pkgs . stdenv . hostPlatform . isAarch64 ) then dontCheck super . hashable else super . hashable ; # https://github.com/tibbe/hashable/issues/95
2019-01-09 02:19:17 +00:00
servant-docs =
let
f = if ( pkgs . stdenv . hostPlatform . isAarch32 || pkgs . stdenv . hostPlatform . isAarch64 )
then dontCheck
else pkgs . lib . id ;
in doJailbreak ( f super . servant-docs ) ; # jailbreak tasty < 1.2 until servant-docs > 0.11.3 is on hackage.
treewide: isArm -> isAarch32
Following legacy packing conventions, `isArm` was defined just for
32-bit ARM instruction set. This is confusing to non packagers though,
because Aarch64 is an ARM instruction set.
The official ARM overview for ARMv8[1] is surprisingly not confusing,
given the overall state of affairs for ARM naming conventions, and
offers us a solution. It divides the nomenclature into three levels:
```
ISA: ARMv8 {-A, -R, -M}
/ \
Mode: Aarch32 Aarch64
| / \
Encoding: A64 A32 T32
```
At the top is the overall v8 instruction set archicture. Second are the
two modes, defined by bitwidth but differing in other semantics too, and
buttom are the encodings, (hopefully?) isomorphic if they encode the
same mode.
The 32 bit encodings are mostly backwards compatible with previous
non-Thumb and Thumb encodings, and if so we can pun the mode names to
instead mean "sets of compatable or isomorphic encodings", and then
voilà we have nice names for 32-bit and 64-bit arm instruction sets
which do not use the word ARM so as to not confused either laymen or
experienced ARM packages.
[1]: https://developer.arm.com/products/architecture/a-profile
2018-03-20 02:41:06 +00:00
swagger2 = if ( pkgs . stdenv . hostPlatform . isAarch32 || pkgs . stdenv . hostPlatform . isAarch64 ) then dontHaddock ( dontCheck super . swagger2 ) else super . swagger2 ;
2017-10-16 12:08:10 +01:00
2018-07-10 16:09:55 +01:00
# requires a release including https://github.com/haskell-servant/servant-swagger/commit/249530d9f85fe76dfb18b100542f75a27e6a3079
servant-swagger = dontCheck super . servant-swagger ;
2017-10-16 12:08:10 +01:00
# Tries to read a file it is not allowed to in the test suite
load-env = dontCheck super . load-env ;
2018-01-26 18:31:37 +00:00
# Copy hledger man pages from data directory into the proper place. This code
# should be moved into the cabal2nix generator.
hledger = overrideCabal super . hledger ( drv : {
postInstall = ''
2019-02-21 11:09:50 +00:00
# Don't install files that don't belong into this package to avoid
# conflicts when hledger and hledger-ui end up in the same profile.
rm embeddedfiles/hledger- { api , ui , web } . *
2018-01-26 18:31:37 +00:00
for i in $ ( seq 1 9 ) ; do
2018-04-01 10:42:53 +01:00
for j in embeddedfiles /* . $ i ; d o
2018-01-26 18:31:37 +00:00
mkdir - p $ out/share/man/man $ i
2018-04-01 10:42:53 +01:00
cp - v $ j $ out/share/man/man $ i /
2018-01-26 18:31:37 +00:00
done
done
2018-02-06 01:07:39 +00:00
mkdir - p $ out/share/info
2018-04-01 10:42:53 +01:00
cp - v embeddedfiles /* . i n f o * $ o u t / s h a r e / i n f o /
2018-01-26 18:31:37 +00:00
'' ;
} ) ;
2019-02-21 11:10:49 +00:00
hledger-ui = overrideCabal super . hledger-ui ( drv : {
2018-01-26 18:31:37 +00:00
postInstall = ''
for i in $ ( seq 1 9 ) ; do
2018-04-01 10:42:53 +01:00
for j in * . $ i ; do
2018-01-26 18:31:37 +00:00
mkdir - p $ out/share/man/man $ i
2018-04-01 10:42:53 +01:00
cp - v $ j $ out/share/man/man $ i /
2018-01-26 18:31:37 +00:00
done
done
2018-02-06 01:07:39 +00:00
mkdir - p $ out/share/info
2018-04-01 10:42:53 +01:00
cp - v * . info * $ out/share/info /
2018-07-10 00:23:50 +01:00
'' ;
2018-12-03 19:03:37 +00:00
} ) ;
2018-01-26 18:31:37 +00:00
hledger-web = overrideCabal super . hledger-web ( drv : {
postInstall = ''
for i in $ ( seq 1 9 ) ; do
2018-04-01 10:42:53 +01:00
for j in * . $ i ; do
2018-01-26 18:31:37 +00:00
mkdir - p $ out/share/man/man $ i
2018-04-01 10:42:53 +01:00
cp - v $ j $ out/share/man/man $ i /
2018-01-26 18:31:37 +00:00
done
done
2018-02-06 01:07:39 +00:00
mkdir - p $ out/share/info
2018-04-01 10:42:53 +01:00
cp - v * . info * $ out/share/info /
2018-01-26 18:31:37 +00:00
'' ;
} ) ;
2018-09-28 08:45:22 +01:00
# https://github.com/haskell-rewriting/term-rewriting/issues/11
term-rewriting = dontCheck ( doJailbreak super . term-rewriting ) ;
2018-02-09 03:37:10 +00:00
# https://github.com/nick8325/twee/pull/1
twee-lib = dontHaddock super . twee-lib ;
2018-02-09 03:57:16 +00:00
# Needs older hlint
hpio = dontCheck super . hpio ;
2018-02-16 11:52:04 +00:00
2018-03-12 08:51:49 +00:00
# https://github.com/fpco/inline-c/issues/72
inline-c = dontCheck super . inline-c ;
2018-03-22 07:46:40 +00:00
# https://github.com/GaloisInc/pure-zlib/issues/6
pure-zlib = doJailbreak super . pure-zlib ;
2018-03-26 21:13:46 +01:00
# https://github.com/strake/lenz-template.hs/issues/1
lenz-template = doJailbreak super . lenz-template ;
2018-03-29 11:32:15 +01:00
# https://github.com/haskell-hvr/resolv/issues/1
resolv = dontCheck super . resolv ;
2018-03-27 09:55:20 +01:00
# spdx 0.2.2.0 needs older tasty
# was fixed in spdx master (4288df6e4b7840eb94d825dcd446b42fef25ef56)
spdx = dontCheck super . spdx ;
2018-04-02 19:00:43 +01:00
# The test suite does not know how to find the 'alex' binary.
alex = overrideCabal super . alex ( drv : {
2018-07-04 12:18:21 +01:00
testSystemDepends = ( drv . testSystemDepends or [ ] ) ++ [ pkgs . which ] ;
2018-04-02 19:00:43 +01:00
preCheck = '' e x p o r t P A T H = " $P W D / d i s t / b u i l d / a l e x : $P A T H " '' ;
} ) ;
2019-03-17 08:41:28 +00:00
arbtt = overrideCabal super . arbtt ( drv : {
preCheck = ''
for n in $ PWD/dist/build /* ; d o P A T H + = " : $ n " ; d o n e
'' ;
} ) ;
2018-04-02 19:00:43 +01:00
2018-04-19 10:23:20 +01:00
# This package refers to the wrong library (itself in fact!)
vulkan = super . vulkan . override { vulkan = pkgs . vulkan-loader ; } ;
2018-04-20 16:51:07 +01:00
2018-07-10 00:23:50 +01:00
# # Builds only with the latest version of indexed-list-literals.
# vector-sized_1_0_3_0 = super.vector-sized_1_0_3_0.override {
# indexed-list-literals = self.indexed-list-literals_0_2_1_1;
# };
2018-04-20 17:19:19 +01:00
2018-04-25 12:47:39 +01:00
# https://github.com/dmwit/encoding/pull/3
encoding = appendPatch super . encoding ./patches/encoding-Cabal-2.0.patch ;
2019-03-16 09:38:12 +00:00
clock = dontCheck ( appendPatch super . clock ./patches/clock-0.7.2.patch ) ;
2018-05-07 12:26:42 +01:00
# Work around overspecified constraint on github ==0.18.
github-backup = doJailbreak super . github-backup ;
2018-06-20 08:20:40 +01:00
# https://github.com/fpco/streaming-commons/issues/49
streaming-commons = dontCheck super . streaming-commons ;
2018-07-10 00:23:50 +01:00
# Test suite depends on old QuickCheck 2.10.x.
cassava = dontCheck super . cassava ;
# Test suite depends on cabal-install
doctest = dontCheck super . doctest ;
2018-07-25 09:02:22 +01:00
# https://github.com/haskell-servant/servant-auth/issues/113
servant-auth-client = dontCheck super . servant-auth-client ;
2018-07-10 00:23:50 +01:00
# Test has either build errors or fails anyway, depending on the compiler.
vector-algorithms = dontCheck super . vector-algorithms ;
# The test suite attempts to use the network.
2018-11-03 23:45:14 +00:00
dhall =
generateOptparseApplicativeCompletion " d h a l l " (
dontCheck super . dhall
) ;
dhall-json =
generateOptparseApplicativeCompletions [ " d h a l l - t o - j s o n " " d h a l l - t o - y a m l " ] (
super . dhall-json
) ;
dhall-nix =
generateOptparseApplicativeCompletion " d h a l l - t o - n i x " (
super . dhall-nix
) ;
2018-07-10 00:23:50 +01:00
# https://github.com/well-typed/cborg/issues/174
cborg = doJailbreak super . cborg ;
serialise = doJailbreak ( dontCheck super . serialise ) ;
2018-06-30 15:49:36 +01:00
2019-03-05 03:59:51 +00:00
# https://github.com/haskell-hvr/netrc/pull/2#issuecomment-469526558
netrc = doJailbreak super . netrc ;
2018-07-10 11:15:02 +01:00
# https://github.com/phadej/tree-diff/issues/19
tree-diff = doJailbreak super . tree-diff ;
2018-07-22 15:43:30 +01:00
# https://github.com/haskell-hvr/hgettext/issues/14
hgettext = doJailbreak super . hgettext ;
2019-06-21 22:10:48 +01:00
# haddock-api-2.22.0: Break out of “QuickCheck ==2.11.*, hspec >=2.4.4 && <2.6”
haddock-api = dontHaddock ( doJailbreak ( super . haddock-api ) ) ;
2018-07-10 11:15:29 +01:00
# The test suite is broken. Break out of "base-compat >=0.9.3 && <0.10, hspec >=2.4.4 && <2.5".
haddock-library = doJailbreak ( dontCheck super . haddock-library ) ;
2018-10-18 13:57:26 +01:00
# haddock-library_1_6_0 = doJailbreak (dontCheck super.haddock-library_1_6_0);
2018-07-10 11:15:29 +01:00
2019-06-21 22:10:48 +01:00
# haskell-names-0.9.4: Break out of “tasty >=0.12 && <1.2”
haskell-names = doJailbreak super . haskell-names ;
haskell-names_0_9_6 = super . haskell-names_0_9_6 . overrideScope ( self : super : {
haskell-src-exts = self . haskell-src-exts_1_21_0 ;
} ) ;
# hdocs-0.5.3.1: Break out of “haddock-api ==2.21.*”
# cannot use doJailbreak due to https://github.com/peti/jailbreak-cabal/issues/7
hdocs = overrideCabal super . hdocs ( drv : {
postPatch = ''
sed - i ' s #haddock-api == 2\.21\.\*,#haddock-api == 2.22.*,#' hdocs.cabal
'' ;
} ) ;
hsdev_0_3_3_1 = super . hsdev_0_3_3_1 . overrideScope ( self : super : {
haskell-names = self . haskell-names_0_9_6 ;
network = self . network_3_0_1_1 ;
} ) ;
2018-12-26 10:23:56 +00:00
# Break out of tasty >=0.10 && <1.2.
aeson-compat = doJailbreak super . aeson-compat ;
# Break out of pretty-show >=1.6 && <1.9
hedgehog = doJailbreak super . hedgehog ;
# Generate shell completion.
cabal2nix = generateOptparseApplicativeCompletion " c a b a l 2 n i x " super . cabal2nix ;
2019-06-14 10:29:52 +01:00
stack = generateOptparseApplicativeCompletion " s t a c k " ( super . stack . overrideScope ( self : super : {
ansi-terminal = self . ansi-terminal_0_9_1 ;
concurrent-output = self . concurrent-output_1_10_10 ; # needed for new ansi-terminal version
2019-06-19 16:36:22 +01:00
hi-file-parser = dontCheck ( unmarkBroken super . hi-file-parser ) ; # Avoid depending on newer hspec versions.
http-download = dontCheck ( unmarkBroken super . http-download ) ;
pantry-tmp = dontCheck ( unmarkBroken super . pantry-tmp ) ;
2019-06-14 10:29:52 +01:00
rio = self . rio_0_1_9_2 ;
2019-06-19 16:36:22 +01:00
rio-prettyprint = unmarkBroken super . rio-prettyprint ;
2019-06-14 10:29:52 +01:00
} ) ) ;
2018-07-10 19:03:13 +01:00
2018-07-12 04:32:30 +01:00
# musl fixes
# dontCheck: use of non-standard strptime "%s" which musl doesn't support; only used in test
unix-time = if pkgs . stdenv . hostPlatform . isMusl then dontCheck super . unix-time else super . unix-time ;
# dontCheck: printf double rounding behavior
prettyprinter = if pkgs . stdenv . hostPlatform . isMusl then dontCheck super . prettyprinter else super . prettyprinter ;
2018-07-14 05:39:17 +01:00
# Fix with Cabal 2.2, https://github.com/guillaume-nargeot/hpc-coveralls/pull/73
hpc-coveralls = appendPatch super . hpc-coveralls ( pkgs . fetchpatch {
url = " h t t p s : / / g i t h u b . c o m / g u i l l a u m e - n a r g e o t / h p c - c o v e r a l l s / p u l l / 7 3 / c o m m i t s / 3 4 4 2 1 7 f 5 1 3 b 7 a d f b 9 0 3 7 f 7 3 0 2 6 f 5 d 9 2 8 b e 9 8 d 0 7 f . p a t c h " ;
sha256 = " 0 5 6 r k 5 8 v 9 h 1 1 4 m j x 6 2 f 4 1 x 9 7 1 x n 9 p 3 n h s a z c f 9 z r c y x h 1 y m r d m 8 j " ;
} ) ;
2018-07-24 01:32:00 +01:00
# Tests require a browser: https://github.com/ku-fpg/blank-canvas/issues/73
blank-canvas = dontCheck super . blank-canvas ;
blank-canvas_0_6_2 = dontCheck super . blank-canvas_0_6_2 ;
2018-08-01 04:28:33 +01:00
# needed because of testing-feat >=0.4.0.2 && <1.1
language-ecmascript = doJailbreak super . language-ecmascript ;
2018-08-03 01:00:47 +01:00
2018-08-09 19:15:20 +01:00
# sexpr is old, broken and has no issue-tracker. Let's fix it the best we can.
2018-08-03 01:00:47 +01:00
sexpr =
appendPatch ( overrideCabal super . sexpr ( drv : {
isExecutable = false ;
libraryHaskellDepends = drv . libraryHaskellDepends ++ [ self . QuickCheck ] ;
} ) ) ./patches/sexpr-0.2.1.patch ;
2018-08-09 19:15:20 +01:00
2018-08-17 14:02:24 +01:00
# https://github.com/haskell/hoopl/issues/50
hoopl = dontCheck super . hoopl ;
2018-08-17 14:25:35 +01:00
# https://github.com/snapframework/xmlhtml/pull/37
xmlhtml = doJailbreak super . xmlhtml ;
2018-11-03 23:45:14 +00:00
# Generate shell completions
purescript = generateOptparseApplicativeCompletion " p u r s " super . purescript ;
2018-09-21 18:08:25 +01:00
# https://github.com/adinapoli/mandrill/pull/52
mandrill = appendPatch super . mandrill ( pkgs . fetchpatch {
url = https://github.com/adinapoli/mandrill/commit/30356d9dfc025a5f35a156b17685241fc3882c55.patch ;
sha256 = " 1 q a i r 0 9 x s 6 v l n 3 v s j z 7 s y 4 h h v 0 3 7 1 4 6 z a k 4 m q 3 i v 6 k d h m p 6 0 6 h q v " ;
} ) ;
2018-09-23 21:48:27 +01:00
# https://github.com/Euterpea/Euterpea2/pull/22
Euterpea = overrideSrc super . Euterpea {
src = pkgs . fetchFromGitHub {
owner = " E u t e r p e a " ;
repo = " E u t e r p e a 2 " ;
rev = " 6 f 4 9 b 7 9 0 a d f b 8 b 6 5 d 9 5 a 7 5 8 1 1 6 c 2 0 0 9 8 f b 0 c d 3 4 c " ;
sha256 = " 0 q z 1 s v b 9 6 n 4 2 n m i g 1 6 v y p h w x a s 3 4 h y p g a y v w c 9 1 r i 7 w 7 x d 6 y i 1 b a " ;
} ;
} ;
2019-02-10 00:36:38 +00:00
# https://github.com/kcsongor/generic-lens/pull/65
generic-lens = dontCheck super . generic-lens ;
2018-09-28 09:42:36 +01:00
2018-10-19 00:12:01 +01:00
# https://github.com/danfran/cabal-macosx/issues/13
cabal-macosx = dontCheck super . cabal-macosx ;
2018-10-19 09:27:12 +01:00
# https://github.com/DanielG/cabal-helper/issues/59
cabal-helper = doJailbreak super . cabal-helper ;
2018-11-19 14:44:32 +00:00
# TODO(Profpatsch): factor out local nix store setup from
# lib/tests/release.nix and use that for the tests of libnix
# libnix = overrideCabal super.libnix (old: {
# testToolDepends = old.testToolDepends or [] ++ [ pkgs.nix ];
# });
libnix = dontCheck super . libnix ;
2018-12-04 11:17:13 +00:00
# The test suite tries to mess with ALSA, which doesn't work in the build sandbox.
xmobar = dontCheck super . xmobar ;
2018-12-05 19:45:32 +00:00
# https://github.com/mgajda/json-autotype/issues/25
json-autotype = dontCheck super . json-autotype ;
2019-06-14 10:29:52 +01:00
# The LTS-13.x versions doesn't suffice to build these packages.
2018-12-14 16:37:51 +00:00
hlint = super . hlint . overrideScope ( self : super : { haskell-src-exts = self . haskell-src-exts_1_21_0 ; } ) ;
2018-12-14 16:40:17 +00:00
hoogle = super . hoogle . overrideScope ( self : super : { haskell-src-exts = self . haskell-src-exts_1_21_0 ; } ) ;
2018-12-14 16:37:51 +00:00
2019-01-09 02:20:27 +00:00
# Jailbreak tasty < 1.2: https://github.com/phadej/tdigest/issues/30
2019-01-09 02:15:43 +00:00
tdigest = doJailbreak super . tdigest ; # until tdigest > 0.2.1
2019-02-03 09:33:13 +00:00
these = doJailbreak super . these ; # until these >= 0.7.6
2019-01-09 02:15:43 +00:00
2019-02-09 09:42:39 +00:00
uri-bytestring = appendPatch super . uri-bytestring ( pkgs . fetchpatch {
url = " h t t p s : / / g i t h u b . c o m / S o o s t o n e / u r i - b y t e s t r i n g / c o m m i t / e 5 c 5 6 0 2 a 9 7 1 6 0 a 6 a 6 3 0 4 a 2 4 9 4 7 e 3 3 e 4 7 c 9 1 5 5 4 6 0 . p a t c h " ;
sha256 = " 1 q w y 8 b j 6 v y w h p 0 0 7 5 d z a 8 j 9 0 z r z s m 3 1 4 4 q z 3 c 7 0 3 s 9 c 4 n 6 p g 3 g w 4 " ;
} ) ;
2019-04-30 12:22:14 +01:00
# Requires pg_ctl command during tests
beam-postgres = overrideCabal super . beam-postgres ( drv : {
testToolDepends = ( drv . testToolDepends or [ ] ) ++ [ pkgs . postgresql ] ;
} ) ;
2019-02-04 12:04:06 +00:00
# https://github.com/sighingnow/computations/pull/1
primesieve = appendPatch super . primesieve ( pkgs . fetchpatch {
url = " h t t p s : / / g i t h u b . c o m / s i g h i n g n o w / c o m p u t a t i o n s / c o m m i t / 1 f 9 6 7 8 8 3 6 7 c 8 7 9 b 9 9 9 a f e 7 3 3 e 2 f e 2 8 d 9 1 9 d 1 7 7 0 2 . p a t c h " ;
sha256 = " 0 l r c m c r x p 9 i m j 9 r f a q 7 m b 0 f n 9 m x m s 4 g q 4 s z 9 5 n 4 s a n 3 d p d 0 q m j 9 x " ;
stripLen = 1 ;
} ) ;
2018-12-30 09:31:42 +00:00
# Fix for base >= 4.11
scat = overrideCabal super . scat ( drv : {
patches = [ ( pkgs . fetchpatch {
url = " h t t p s : / / g i t h u b . c o m / r e d e l m a n n / s c a t / p u l l / 6 . d i f f " ;
sha256 = " 0 7 n j 2 p 0 k g 0 5 l i v h g p 1 h k k d p h 0 j 0 a 6 l b 2 1 6 f 8 x 3 4 8 q j a s y 0 l z b f h l " ;
} ) ] ;
} ) ;
2019-03-24 09:54:44 +00:00
# Remove unecessary constraint:
# https://github.com/agrafix/superbuffer/pull/2
superbuffer = overrideCabal super . superbuffer ( drv : {
postPatch = ''
sed - i ' s #QuickCheck < 2.10#QuickCheck < 2.13#' superbuffer.cabal
'' ;
} ) ;
2019-02-13 08:47:29 +00:00
# Use latest pandoc despite what LTS says.
2019-02-15 13:57:46 +00:00
# Test suite fails in both 2.5 and 2.6: https://github.com/jgm/pandoc/issues/5309.
2019-06-13 21:14:54 +01:00
cmark-gfm = self . cmark-gfm_0_2_0 ;
2019-06-14 15:37:53 +01:00
pandoc = dontCheck ( doDistribute super . pandoc_2_7_3 ) ; # test suite failure: https://github.com/jgm/pandoc/issues/5582
2019-04-20 11:00:06 +01:00
pandoc-citeproc = doDistribute super . pandoc-citeproc_0_16_2 ;
2019-06-13 21:14:54 +01:00
skylighting = self . skylighting_0_8_1_1 ;
skylighting-core = self . skylighting-core_0_8_1_1 ;
2019-02-13 08:47:29 +00:00
2019-05-17 18:20:34 +01:00
# Current versions of tasty-hedgehog need hedgehog 1.x, which
# we don't have in LTS-13.x.
tasty-hedgehog = super . tasty-hedgehog . override { hedgehog = self . hedgehog_1_0 ; } ;
2019-02-15 13:57:46 +00:00
2019-02-24 08:56:29 +00:00
# The latest release version is ancient. You really need this tool from git.
2019-02-24 09:01:01 +00:00
haskell-ci = generateOptparseApplicativeCompletion " h a s k e l l - c i "
( addBuildDepend ( overrideSrc ( dontCheck super . haskell-ci ) {
2019-06-26 13:07:57 +01:00
version = " 2 0 1 9 0 6 2 5 - g i t " ;
2019-02-24 09:01:01 +00:00
src = pkgs . fetchFromGitHub {
owner = " h a s k e l l - C I " ;
repo = " h a s k e l l - c i " ;
2019-06-26 13:07:57 +01:00
rev = " 2 6 0 f 9 6 7 c 6 9 7 3 d f b 2 2 e c c 8 0 6 1 a 1 8 1 1 a 2 e a 4 b 7 9 e 0 1 " ;
sha256 = " 1 m v n 6 p q a 6 w f c m 4 j x h l h m 4 l 5 4 p w r l g n z 7 v d r m k w a b l i w z 4 q 0 b z g q k " ;
2019-02-24 09:01:01 +00:00
} ;
2019-06-26 13:07:57 +01:00
} ) ( with self ; [ base-compat generic-lens microlens optparse-applicative ShellCheck exceptions temporary ] ) ) ;
2019-02-24 08:56:29 +00:00
2019-03-09 16:37:46 +00:00
# Fix build with attr-2.4.48 (see #53716)
xattr = appendPatch super . xattr ./patches/xattr-fix-build.patch ;
2019-04-07 18:46:53 +01:00
# Break out of pandoc >=2.0 && <2.7 (https://github.com/pbrisbin/yesod-markdown/pull/65)
yesod-markdown = doJailbreak super . yesod-markdown ;
2019-04-30 11:32:11 +01:00
# These packages needs network 3.x, which is not in LTS-13.x.
2019-04-30 11:00:45 +01:00
network-bsd = super . network-bsd . override { network = self . network_3_0_1_1 ; } ;
2019-04-30 11:32:11 +01:00
lambdabot-core = super . lambdabot-core . overrideScope ( self : super : { network = self . network_3_0_1_1 ; hslogger = self . hslogger_1_3_0_0 ; } ) ;
2019-04-30 11:47:42 +01:00
lambdabot-reference-plugins = super . lambdabot-reference-plugins . overrideScope ( self : super : { network = self . network_3_0_1_1 ; hslogger = self . hslogger_1_3_0_0 ; } ) ;
lambdabot-haskell-plugins = super . lambdabot-haskell-plugins . overrideScope ( self : super : { network = self . network_3_0_1_1 ; socks = self . socks_0_6_0 ; connection = self . connection_0_3_0 ; haskell-src-exts = self . haskell-src-exts_1_21_0 ; } ) ;
2019-04-30 11:00:45 +01:00
2019-05-02 19:14:15 +01:00
# Some tests depend on a postgresql instance
# Haddock failure: https://github.com/haskell/haddock/issues/979
esqueleto = dontHaddock ( dontCheck super . esqueleto ) ;
2019-05-23 14:35:13 +01:00
# Requires API keys to run tests
algolia = dontCheck super . algolia ;
# antiope-s3's latest stackage version has a hspec < 2.6 requirement, but
# hspec which isn't in stackage is already past that
antiope-s3 = doJailbreak super . antiope-s3 ;
# Has tasty < 1.2 requirement, but works just fine with 1.2
temporary-resourcet = doJailbreak super . temporary-resourcet ;
# Requires dhall >= 1.23.0
2019-06-07 10:59:57 +01:00
ats-pkg = super . ats-pkg . override { dhall = self . dhall_1_24_0 ; } ;
dhall-to-cabal = super . dhall-to-cabal . override { dhall = self . dhall_1_24_0 ; } ;
2019-05-23 14:35:13 +01:00
2019-06-01 15:33:17 +01:00
# Test suite doesn't work with current QuickCheck
# https://github.com/pruvisto/heap/issues/11
heap = dontCheck super . heap ;
2019-06-13 20:55:34 +01:00
# https://github.com/hslua/tasty-lua/issues/1
tasty-lua = dontCheck super . tasty-lua ;
2019-06-13 21:05:51 +01:00
# Test suite won't link for no apparent reason.
constraints-deriving = dontCheck super . constraints-deriving ;
2019-06-13 21:08:49 +01:00
# The old LTS-13.x version does not compile.
ip = self . ip_1_5_0 ;
2018-08-13 19:06:09 +01:00
} // import ./configuration-tensorflow.nix { inherit pkgs haskellLib ; } self super