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 : {
2019-10-14 18:22:06 +01:00
# Arion's test suite needs a Nixpkgs, which is cumbersome to do from Nixpkgs
# itself. For instance, pkgs.path has dirty sources and puts a huge .git in the
# store. Testing is done upstream.
arion-compose = dontCheck super . arion-compose ;
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 ;
2020-06-04 17:18:03 +01:00
# waiting for release: https://github.com/jwiegley/c2hsc/issues/41
c2hsc = appendPatch super . c2hsc ( pkgs . fetchpatch {
url = " h t t p s : / / g i t h u b . c o m / j w i e g l e y / c 2 h s c / c o m m i t / 4 9 0 e c a b 2 0 2 e 0 d e 7 f c 9 9 5 e e d f 7 4 4 a d 3 c b 4 0 8 b 5 3 c c . p a t c h " ;
sha256 = " 1 c 7 k n p v x r 7 p 8 c 1 5 9 j k y k 6 w 2 9 6 5 3 z 5 y z g j j q j 1 1 1 3 0 b b b 8 m k 9 q h q 7 " ;
} ) ;
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 ' " ;
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 ;
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
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/
2020-03-13 11:40:53 +00: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 ;
2020-07-03 11:44:43 +01:00
sha256 = " 1 b 5 l b 1 h 7 p q f h m p 5 4 z z w h a 1 7 m s 2 0 x v x a i 1 d l 7 s 6 7 8 7 m 9 a s l i 4 q 4 0 6 " ;
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-06-09 19:48:36 +01:00
bindings-levmar = overrideCabal super . bindings-levmar ( drv : {
2020-03-31 15:47:18 +01:00
extraLibraries = [ pkgs . blas ] ;
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-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 ;
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.
2020-06-24 22:11:27 +01:00
vector = 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 ;
2019-10-08 07:49:16 +01:00
barbly = addBuildDepend super . barbly pkgs . darwin . apple_sdk . frameworks . AppKit ;
2016-10-27 23:10:39 +01:00
# Hakyll's tests are broken on Darwin (3 failures); and they require util-linux
2019-09-15 19:00:33 +01:00
hakyll = if pkgs . stdenv . isDarwin
2016-10-27 23:10:39 +01:00
then dontCheck ( overrideCabal super . hakyll ( drv : {
testToolDepends = [ ] ;
} ) )
2019-09-15 19:00:33 +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-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 ;
2020-04-16 20:51:46 +01:00
# Test suite depends on source code being available
simple-affine-space = dontCheck super . simple-affine-space ;
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-01-20 16:28:50 +00:00
filestore = dontCheck super . filestore ;
2015-01-20 22:59:31 +00:00
graceful = dontCheck super . graceful ;
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 ;
2020-06-21 20:23:47 +01:00
# 2020-06-05: HACK: does not passes own build suite - `dontCheck` We should
# generate optparse-applicative completions for the hnix executable. Sadly
# building of the executable has been disabled for ghc < 8.10 in hnix.
# Generating the completions should be activated again, once we default to
# ghc 8.10.
hnix = dontCheck super . hnix ;
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-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
2019-11-12 13:46:38 +00:00
dotenv = dontCheck super . dotenv ; # Tests fail because of missing test file on version 0.8.0.2 fixed on version 0.8.0.4
2015-01-20 16:28:50 +00:00
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 ;
2019-11-08 17:29:16 +00:00
github-rest = dontCheck super . github-rest ; # test suite needs the network
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 ;
2020-03-28 03:03:18 +00:00
hspec-core = if pkgs . stdenv . isi686 then dontCheck super . hspec-core else super . hspec-core ; # tests rely on `Int` being 64-bit; https://github.com/hspec/hspec/issues/431
2015-01-20 16:28:50 +00:00
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 ;
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
2019-11-08 17:29:47 +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 ;
2016-09-14 18:05:32 +01:00
lvmrun = disableHardening ( dontCheck super . lvmrun ) [ " f o r m a t " ] ;
2020-07-05 10:20:00 +01:00
math-functions = if pkgs . stdenv . isDarwin
then dontCheck super . math-functions # "erf table" test fails on Darwin https://github.com/bos/math-functions/issues/63
else super . math-functions ;
2019-09-04 13:16:52 +01:00
matplotlib = dontCheck super . matplotlib ;
2015-01-20 16:28:50 +00:00
memcache = dontCheck super . memcache ;
2016-09-17 09:48:12 +01:00
metrics = dontCheck super . metrics ;
2015-01-20 16:28:50 +00:00
milena = dontCheck super . milena ;
2020-07-05 10:20:00 +01:00
mockery = if pkgs . stdenv . isDarwin
then overrideCabal super . mockery ( drv : { preCheck = " e x p o r t T R A V I S = t r u e " ; } ) # darwin doesn't have sub-second resolution https://github.com/hspec/mockery/issues/11
else super . mockery ;
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 ;
2020-05-06 05:08:27 +01:00
network_2_6_3_1 = dontCheck super . network_2_6_3_1 ;
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 ;
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 ;
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 ;
2020-03-08 10:00:44 +00:00
saltine = dontCheck super . saltine ; # https://github.com/tel/saltine/pull/56
2015-01-20 16:28:50 +00:00
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 ;
2019-11-08 17:29:47 +00:00
snap-core = dontCheck super . snap-core ;
sourcemap = dontCheck super . sourcemap ;
2015-01-20 16:28:50 +00:00
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 ;
2020-04-18 21:51:19 +01:00
tar = dontCheck super . tar ; #https://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 ;
2019-07-21 10:53:23 +01:00
zip-archive = dontCheck super . zip-archive ; # https://github.com/jgm/zip-archive/issues/57
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 ;
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-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 " ; } ) ;
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/junjihashimoto/test-sandbox-compose/issues/2
test-sandbox-compose = dontCheck super . test-sandbox-compose ;
2020-06-25 05:08:15 +01:00
# Waiting on language-python 0.5.8 https://github.com/bjpop/language-python/issues/60
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
2020-06-25 05:08:15 +01:00
# Waiting on https://github.com/RaphaelJ/friday/pull/36
2019-01-05 04:08:53 +00:00
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 ;
2020-02-28 19:28:01 +00:00
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-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-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-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 ;
2020-04-20 14:17:49 +01:00
# https://github.com/Euterpea/Euterpea2/issues/40
Euterpea = appendPatch super . Euterpea ( pkgs . fetchpatch {
url = " h t t p s : / / g i t h u b . c o m / E u t e r p e a / E u t e r p e a 2 / p u l l / 3 8 . p a t c h " ;
sha256 = " 1 3 g 4 6 2 q m j 8 c 7 i f 7 9 7 g n y v f 8 h 0 c d d m m 3 x y 0 p j l d w 4 8 w 8 f 8 s r 4 q s j 0 " ;
} ) ;
2020-01-31 20:38:10 +00:00
# Install icons, metadata and cli program.
bustle = overrideCabal super . bustle ( drv : {
buildDepends = [ pkgs . libpcap ] ;
buildTools = with pkgs . buildPackages ; [ gettext perl help2man ] ;
patches = [
# fix build
# https://gitlab.freedesktop.org/bustle/bustle/merge_requests/14
( pkgs . fetchpatch {
url = " h t t p s : / / g i t l a b . f r e e d e s k t o p . o r g / b u s t l e / b u s t l e / c o m m i t / e e 4 b 8 1 c b c 2 3 2 d 4 7 b a 9 9 4 0 f 1 9 8 7 7 7 7 b 1 7 4 5 2 e 7 1 f f . p a t c h " ;
sha256 = " 0 v 9 c v b m r m a 5 j c q c g 1 n a r p m 1 5 4 9 h 0 c g 8 m r 6 i 0 0 q x m q 0 x 6 h s 0 4 d n w a " ;
} )
( pkgs . fetchpatch {
url = " h t t p s : / / g i t l a b . f r e e d e s k t o p . o r g / b u s t l e / b u s t l e / c o m m i t / a a e 6 8 4 3 f 5 1 f 5 4 6 7 9 d 4 4 0 f b 3 8 1 3 e 6 1 3 5 5 d c 8 4 0 6 b 9 . p a t c h " ;
sha256 = " 1 a 8 h r 3 8 h d 1 g d k q h s y 5 6 h y l 7 n j w 8 c i 7 9 i i g r 8 1 a a l k b 7 h n 4 c k v h 2 a " ;
} )
] ;
postInstall = ''
make install PREFIX = $ out
'' ;
} ) ;
2017-12-16 21:37:47 +00:00
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 {
2019-12-27 17:42:56 +00:00
owner = " p r o j e c t i o n a l - h a s k e l l " ;
2017-08-01 14:35:44 +01:00
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
} ) ;
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 ;
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 {
2020-04-01 02:11:51 +01:00
url = " h t t p s : / / g i t h u b . c o m / a u g u s t s s / d j i n n / c o m m i t / 6 c b 9 4 3 3 a 1 3 7 f b 6 b 5 1 9 4 a f e 4 1 d 6 1 6 b d 8 b 6 2 b 9 5 6 3 0 . p a t c h " ;
2019-01-01 06:30:43 +00:00
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-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 " " "
'' ;
} ) ;
2020-04-02 20:36:37 +01:00
# The standard libraries are compiled separately.
2020-05-29 19:56:32 +01:00
idris = generateOptparseApplicativeCompletion " i d r i s " ( dontCheck super . idris ) ;
2016-09-10 21:00:45 +01:00
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 } " ;
2020-02-07 09:12:49 +00:00
sha256 = " 0 x k 3 c z k 3 j h q j x h y 0 g 8 r 2 2 4 8 m 8 y x g v m q h g n 9 5 5 k 9 2 z 0 h 7 p 0 2 l f s 8 9 " ;
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 ] ;
2019-10-27 13:03:25 +00:00
makeFlags = [ " h t m l " ] ;
2017-01-15 00:21:36 +00:00
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-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: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:39:00 +00:00
# https://github.com/hvr/uuid/issues/28
uuid-types = doJailbreak super . uuid-types ;
uuid = doJailbreak super . uuid ;
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-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-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-08-10 11:58:52 +01:00
cryptol = overrideCabal super . cryptol ( 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
2020-06-28 19:21:40 +01:00
restless-git = dontCheck 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:15:18 +00:00
blaze-html = doJailbreak super . blaze-html ;
2017-12-19 21:49:40 +00:00
int-cast = doJailbreak super . int-cast ;
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 ;
2020-07-03 19:46:58 +01:00
# Depends on tasty < 1.x, which we don't have.
cryptohash-sha256 = doJailbreak super . cryptohash-sha256 ;
2017-12-19 21:03:14 +00:00
# Needs tasty-quickcheck ==0.8.*, which we don't have.
2017-12-19 21:10:41 +00:00
cryptohash-sha1 = doJailbreak super . cryptohash-sha1 ;
cryptohash-md5 = doJailbreak super . cryptohash-md5 ;
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
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-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-03-26 21:13:46 +01:00
2019-09-02 14:19:40 +01:00
# https://github.com/haskell-hvr/resolv/pull/6
2019-08-28 16:38:36 +01:00
resolv_0_1_1_2 = dontCheck super . resolv_0_1_1_2 ;
2018-03-29 11:32:15 +01:00
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.
2019-09-16 21:11:40 +01:00
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 " '' ;
} ) ;
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
2020-05-29 12:07:34 +01:00
# Compiles some C++ source which requires these headers
VulkanMemoryAllocator = addExtraLibrary super . VulkanMemoryAllocator pkgs . vulkan-headers ;
2018-04-25 12:47:39 +01:00
# https://github.com/dmwit/encoding/pull/3
2019-09-02 14:19:40 +01:00
encoding = doJailbreak ( appendPatch super . encoding ./patches/encoding-Cabal-2.0.patch ) ;
2018-04-25 12:47:39 +01:00
2018-05-07 12:26:42 +01:00
# Work around overspecified constraint on github ==0.18.
github-backup = doJailbreak super . github-backup ;
2018-07-10 00:23:50 +01:00
# 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 ;
2020-06-04 23:24:10 +01:00
# 2020-06-04: HACK: dontCheck - The test suite attempts to use the network.
# Should be solved when: https://github.com/dhall-lang/dhall-haskell/issues/1837
2020-06-26 21:41:47 +01:00
dhall = ( generateOptparseApplicativeCompletion " d h a l l " ( dontCheck super . dhall ) ) . override { repline = self . repline_0_3_0_0 ; } ;
2020-06-12 17:23:52 +01:00
dhall_1_30_0 = dontCheck super . dhall_1_30_0 ;
2020-06-26 21:41:47 +01:00
repline_0_3_0_0 = super . repline_0_3_0_0 . override { haskeline = self . haskeline_0_8_0_0 ; } ;
haskeline_0_8_0_0 = dontCheck super . haskeline_0_8_0_0 ;
2018-11-03 23:45:14 +00:00
dhall-json =
2020-06-04 23:27:52 +01:00
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 ;
2018-11-03 23:45:14 +00:00
dhall-nix =
generateOptparseApplicativeCompletion " d h a l l - t o - n i x " (
super . dhall-nix
) ;
2018-07-10 00:23:50 +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-22 15:43:30 +01:00
# https://github.com/haskell-hvr/hgettext/issues/14
hgettext = doJailbreak super . hgettext ;
2018-12-26 10:23:56 +00:00
# Generate shell completion.
cabal2nix = generateOptparseApplicativeCompletion " c a b a l 2 n i x " super . cabal2nix ;
2020-06-12 19:44:56 +01:00
stack = generateOptparseApplicativeCompletion " s t a c k " super . stack ;
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
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
2019-11-06 10:48:41 +00:00
purescript =
let
purescriptWithOverrides = super . purescript . override {
# PureScript requires an older version of happy.
happy = self . happy_1_19_9 ;
} ;
# PureScript is built against LTS-13, so we need to jailbreak it to
# accept more recent versions of the libraries it requires.
jailBrokenPurescript = doJailbreak purescriptWithOverrides ;
# Haddocks for PureScript can't be built.
# https://github.com/purescript/purescript/pull/3745
dontHaddockPurescript = dontHaddock jailBrokenPurescript ;
in
# Generate shell completions
generateOptparseApplicativeCompletion " p u r s " dontHaddockPurescript ;
2018-11-03 23:45:14 +00:00
2020-06-04 23:32:00 +01:00
# 2020-06-05: HACK: Package can not pass test suite,
# Upstream Report: https://github.com/kcsongor/generic-lens/issues/83
2019-02-10 00:36:38 +00:00
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 ;
2020-06-24 20:43:54 +01:00
# https://github.com/DanielG/cabal-helper/pull/123
2018-10-19 09:27:12 +01:00
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 ;
2020-06-22 19:09:37 +01:00
# dontCheck: The test suite tries to mess with ALSA, which doesn't work in the build sandbox.
2020-06-28 16:28:31 +01:00
xmobar = dontCheck super . xmobar ;
2018-12-04 11:17:13 +00:00
2018-12-05 19:45:32 +00:00
# https://github.com/mgajda/json-autotype/issues/25
json-autotype = dontCheck super . json-autotype ;
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
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 " ;
} ) ] ;
} ) ;
2020-06-04 23:33:16 +01:00
# 2020-06-05: HACK: In Nixpkgs currently this is
# old pandoc version 2.7.4 to current 2.9.2.1,
# test suite failures: https://github.com/jgm/pandoc/issues/5582
2019-08-10 10:25:21 +01:00
pandoc = dontCheck super . pandoc ;
2019-02-15 13:57:46 +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-05-02 19:14:15 +01:00
# Some tests depend on a postgresql instance
2020-06-24 20:43:54 +01:00
esqueleto = dontCheck super . esqueleto ;
2019-05-02 19:14:15 +01:00
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
2020-03-10 01:55:21 +00:00
ats-pkg = dontCheck ( super . ats-pkg . override { dhall = self . dhall_1_29_0 ; } ) ;
2019-05-23 14:35:13 +01:00
2020-03-10 14:42:05 +00:00
# fake a home dir and capture generated man page
ats-format = overrideCabal super . ats-format ( old : {
preConfigure = " e x p o r t H O M E = $ P W D " ;
postBuild = " m v . l o c a l / s h a r e $ o u t " ;
} ) ;
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 21:05:51 +01:00
# Test suite won't link for no apparent reason.
constraints-deriving = dontCheck super . constraints-deriving ;
2019-08-21 20:29:03 +01:00
# https://github.com/elliottt/hsopenid/issues/15
openid = markBroken super . openid ;
2019-09-07 18:50:07 +01:00
# The test suite needs the packages's executables in $PATH to succeed.
arbtt = overrideCabal super . arbtt ( drv : {
preCheck = ''
for i in $ PWD/dist/build /* ; d o
export PATH = " $ i : $ P A T H "
done
'' ;
} ) ;
2019-10-18 20:41:16 +01:00
# https://github.com/erikd/hjsmin/issues/32
hjsmin = dontCheck super . hjsmin ;
2019-10-18 21:38:31 +01:00
nix-tools = super . nix-tools . overrideScope ( self : super : {
# Needs https://github.com/peti/hackage-db/pull/9
hackage-db = super . hackage-db . overrideAttrs ( old : {
src = pkgs . fetchFromGitHub {
owner = " E l v i s h J e r r i c c o " ;
repo = " h a c k a g e - d b " ;
rev = " 8 4 c a 9 f c 7 5 a d 4 5 a 7 1 8 8 0 e 9 3 8 e 0 d 9 3 e a 4 b d e 0 5 f 5 b d " ;
sha256 = " 0 y 3 k w 1 h r x h s q m y x 5 9 s x b a 8 n p j 4 y a 8 d p g j l j c 2 1 g k g d v d y 9 6 2 8 q 4 c " ;
} ;
} ) ;
} ) ;
2019-10-20 15:51:36 +01:00
# upstream issue: https://github.com/vmchale/atspkg/issues/12
language-ats = dontCheck super . language-ats ;
2019-11-06 19:08:44 +00:00
# Remove for hail > 0.2.0.0
hail = overrideCabal super . hail ( drv : {
patches = [
( pkgs . fetchpatch {
# Relax dependency constraints,
# upstream PR: https://github.com/james-preston/hail/pull/13
url = " h t t p s : / / p a t c h - d i f f . g i t h u b u s e r c o n t e n t . c o m / r a w / j a m e s - p r e s t o n / h a i l / p u l l / 1 3 . p a t c h " ;
sha256 = " 0 3 9 p 5 m q g i c b h l d 2 z 4 4 c b v s m a m 3 p z 0 p y 3 y b a i f w r j s n 1 y 6 9 l d s m k x " ;
} )
( pkgs . fetchpatch {
# Relax dependency constraints,
# upstream PR: https://github.com/james-preston/hail/pull/15
url = " h t t p s : / / p a t c h - d i f f . g i t h u b u s e r c o n t e n t . c o m / r a w / j a m e s - p r e s t o n / h a i l / p u l l / 1 5 . p a t c h " ;
sha256 = " 0 3 k d v r 8 h x i 6 i s b 8 y x p 5 r g c m z 8 5 5 n 1 9 m 1 y a c n 3 d 5 6 a 4 i 5 8 j 2 m l d j w " ;
} )
] ;
} ) ;
2019-11-29 19:57:30 +00:00
# https://github.com/kazu-yamamoto/dns/issues/150
dns = dontCheck super . dns ;
2019-12-18 03:25:16 +00:00
# apply patches from https://github.com/snapframework/snap-server/pull/126
# manually until they are accepted upstream
snap-server = overrideCabal super . snap-server ( drv : {
patches = [ ( pkgs . fetchpatch {
# allow compilation with network >= 3
2020-04-01 02:11:51 +01:00
url = " h t t p s : / / g i t h u b . c o m / s n a p f r a m e w o r k / s n a p - s e r v e r / p u l l / 1 2 6 / c o m m i t s / 4 3 3 8 f e 1 5 d 6 8 e 1 1 e 3 c 7 f d 0 f 9 8 6 2 f 8 1 8 8 6 4 a d c 1 d 4 5 . p a t c h " ;
2019-12-18 03:25:16 +00:00
sha256 = " 1 n l w 9 l c k m 3 f l z k m h k z w c 7 z x h d h 9 n s 3 3 w 8 p 8 d s 8 n f 5 7 4 n q r 5 c r 8 b v " ;
} )
( pkgs . fetchpatch {
# prefer fdSocket over unsafeFdSocket
2020-04-01 02:11:51 +01:00
url = " h t t p s : / / g i t h u b . c o m / s n a p f r a m e w o r k / s n a p - s e r v e r / p u l l / 1 2 6 / c o m m i t s / 4 1 0 d e 2 d f 1 2 3 b 1 d 5 6 b 3 0 9 3 7 2 0 e 9 c 6 a 1 a d 7 9 f e 9 d e 6 . p a t c h " ;
2019-12-18 03:25:16 +00:00
sha256 = " 0 8 p s v w 0 x n y 6 4 q 4 b w 1 n w g 0 1 p k z h 0 1 a k 5 4 2 l w 6 k 1 p s 7 c d c w a x k 0 n 9 4 " ;
} ) ] ;
} ) ;
2019-12-27 19:34:14 +00:00
# https://github.com/haskell-servant/servant-blaze/issues/17
servant-blaze = doJailbreak super . servant-blaze ;
# https://github.com/haskell-servant/servant-ekg/issues/15
servant-ekg = doJailbreak super . servant-ekg ;
2020-02-06 10:50:47 +00:00
# the test suite has an overly tight restriction on doctest
2020-02-07 13:34:07 +00:00
# See https://github.com/ekmett/perhaps/pull/5
2020-02-06 10:50:47 +00:00
perhaps = doJailbreak super . perhaps ;
2020-02-08 19:52:00 +00:00
# it wants to build a statically linked binary by default
hledger-flow = overrideCabal super . hledger-flow ( drv : {
postPatch = ( drv . postPatch or " " ) + ''
substituteInPlace hledger-flow . cabal - - replace " - s t a t i c " " "
'' ;
} ) ;
2020-06-22 21:38:51 +01:00
# gtk/gtk3 needs to be told on Darwin to use the Quartz
2020-02-17 20:29:19 +00:00
# rather than X11 backend (see eg https://github.com/gtk2hs/gtk2hs/issues/249).
2020-06-22 21:38:51 +01:00
gtk3 = appendConfigureFlags super . gtk3 ( pkgs . lib . optional pkgs . stdenv . isDarwin " - f h a v e - q u a r t z - g t k " ) ;
gtk = appendConfigureFlags super . gtk ( pkgs . lib . optional pkgs . stdenv . isDarwin " - f h a v e - q u a r t z - g t k " ) ;
2020-02-17 20:29:19 +00:00
2020-02-21 03:33:29 +00:00
# Chart-tests needs and compiles some modules from Chart itself
Chart-tests = ( addExtraLibrary super . Chart-tests self . QuickCheck ) . overrideAttrs ( old : {
preCheck = old . postPatch or " " + ''
tar - - one-top-level = ../chart - - strip-components = 1 - xf $ { self . Chart . src }
'' ;
} ) ;
2020-02-21 21:21:30 +00:00
# This breaks because of version bounds, but compiles and runs fine.
# Last commit is 5 years ago, so we likely won't get upstream fixed soon.
# https://bitbucket.org/rvlm/hakyll-contrib-hyphenation/src/master/
# Therefore we jailbreak it.
hakyll-contrib-hyphenation = doJailbreak super . hakyll-contrib-hyphenation ;
2020-06-22 18:55:24 +01:00
# 2020-06-22: NOTE: > 0.4.0 => rm Jailbreak: https://github.com/serokell/nixfmt/issues/71
2020-03-02 10:47:42 +00:00
nixfmt = doJailbreak super . nixfmt ;
2020-06-22 18:50:05 +01:00
# 2020-06-22: NOTE: QuickCheck upstreamed https://github.com/phadej/binary-instances/issues/7
2020-03-06 19:38:52 +00:00
binary-instances = dontCheck super . binary-instances ;
2020-03-06 19:39:21 +00:00
# Disabling the test suite lets the build succeed on older CPUs
# that are unable to run the generated library because they
# lack support for AES-NI, like some of our Hydra build slaves
# do. See https://github.com/NixOS/nixpkgs/issues/81915 for
# details.
cryptonite = dontCheck super . cryptonite ;
2020-04-17 13:29:46 +01:00
# The test suite depends on an impure cabal-install installation in
2020-04-25 17:22:55 +01:00
# $HOME, which we don't have in our build sandbox.
cabal-install-parsers = dontCheck super . cabal-install-parsers ;
2020-03-06 21:11:33 +00:00
2020-06-08 11:00:27 +01:00
# gitit is unbroken in the latest release
gitit = markUnbroken super . gitit ;
2020-04-04 20:42:07 +01:00
# Test suite requires database
2020-03-04 02:37:56 +00:00
persistent-mysql = dontCheck super . persistent-mysql ;
2020-04-04 20:42:07 +01:00
persistent-postgresql = dontCheck super . persistent-postgresql ;
2020-03-04 02:37:56 +00:00
2020-03-11 23:04:09 +00:00
# Fix EdisonAPI and EdisonCore for GHC 8.8:
# https://github.com/robdockins/edison/pull/16
EdisonAPI = appendPatch super . EdisonAPI ( pkgs . fetchpatch {
url = " h t t p s : / / g i t h u b . c o m / r o b d o c k i n s / e d i s o n / p u l l / 1 6 / c o m m i t s / 8 d a 6 c 0 f 7 d 8 6 6 6 7 6 6 e 2 f 0 6 9 3 4 2 5 c 3 4 7 c 0 a d b 4 9 2 d c . p a t c h " ;
postFetch = ''
$ { pkgs . patchutils } /bin/filterdiff - - include = ' a/edison-api /* ' - - s t r i p = 1 " $ o u t " > " $ t m p f i l e "
mv " $ t m p f i l e " " $ o u t "
'' ;
sha256 = " 0 y i 5 p z 0 3 9 l c m 4 p l 9 x n l 6 k r q x y q q 5 r g b 5 b 6 m 0 9 w 0 s f y 0 6 x 0 n 4 x 2 1 3 " ;
} ) ;
EdisonCore = appendPatch super . EdisonCore ( pkgs . fetchpatch {
url = " h t t p s : / / g i t h u b . c o m / r o b d o c k i n s / e d i s o n / p u l l / 1 6 / c o m m i t s / 8 d a 6 c 0 f 7 d 8 6 6 6 7 6 6 e 2 f 0 6 9 3 4 2 5 c 3 4 7 c 0 a d b 4 9 2 d c . p a t c h " ;
postFetch = ''
$ { pkgs . patchutils } /bin/filterdiff - - include = ' a/edison-core /* ' - - s t r i p = 1 " $ o u t " > " $ t m p f i l e "
mv " $ t m p f i l e " " $ o u t "
'' ;
sha256 = " 0 9 7 w q n 8 h x s r 5 0 b 9 m h n d g 5 p j i m 5 j m a 2 y m 4 y l p i b a k m m b 5 m 9 8 n 1 7 z p " ;
} ) ;
2020-06-12 19:36:45 +01:00
# polysemy-plugin 0.2.5.0 has constraint ghc-tcplugins-extra (==0.3.*)
# This upstream issue is relevant:
# https://github.com/polysemy-research/polysemy/issues/322
2020-03-30 09:25:23 +01:00
polysemy-plugin = super . polysemy-plugin . override {
ghc-tcplugins-extra = self . ghc-tcplugins-extra_0_3_2 ;
} ;
2020-04-03 02:09:34 +01:00
2020-04-14 10:28:31 +01:00
# Test suite requires running a database server. Testing is done upstream.
2020-06-10 15:35:58 +01:00
hasql-notifications = dontCheck super . hasql-notifications ;
2020-04-14 10:28:31 +01:00
hasql-pool = dontCheck super . hasql-pool ;
2020-04-10 17:10:55 +01:00
# This bumps optparse-applicative to <0.16 in the cabal file, as otherwise
# the version bounds are not satisfied. This can be removed if the PR at
# https://github.com/ananthakumaran/webify/pull/27 is merged and a new
# release of webify is published.
webify = appendPatch super . webify ( pkgs . fetchpatch {
url = " h t t p s : / / g i t h u b . c o m / a n a n t h a k u m a r a n / w e b i f y / p u l l / 2 7 / c o m m i t s / 6 d 6 5 3 e 7 b d c 1 f f d a 7 5 e a d 4 6 8 5 1 b 5 d b 4 5 e 8 7 c b 2 a a 0 . p a t c h " ;
2020-06-01 09:59:41 +01:00
sha256 = " 0 x b f h z h z g 9 4 b 4 r 5 q y 5 d g 1 c 4 0 l i s w w p q a r r c 2 c h c w g f b f n r m w k f c 2 " ;
2020-04-10 17:10:55 +01:00
} ) ;
2020-05-03 15:51:09 +01:00
# this will probably need to get updated with every ghcide update,
# we need an override because ghcide is tracking haskell-lsp closely.
2020-06-10 10:31:09 +01:00
ghcide = dontCheck ( super . ghcide . override { ghc-check = self . ghc-check_0_3_0_1 ; } ) ;
2020-05-05 21:05:49 +01:00
2020-05-07 18:43:28 +01:00
# hasn‘ t bumped upper bounds
# upstream: https://github.com/obsidiansystems/which/pull/6
which = doJailbreak super . which ;
2020-05-20 13:46:21 +01:00
# the test suite attempts to run the binaries built in this package
# through $PATH but they aren't in $PATH
dhall-lsp-server = dontCheck super . dhall-lsp-server ;
2020-06-10 10:31:09 +01:00
# https://github.com/ocharles/weeder/issues/15
weeder = doJailbreak super . weeder ;
2020-06-12 17:23:52 +01:00
# Requested version bump on upstream https://github.com/obsidiansystems/constraints-extras/issues/32
constraints-extras = doJailbreak super . constraints-extras ;
2020-06-22 19:05:33 +01:00
# 2020-06-22: NOTE: > 0.10.0.0 => rm dhall override: https://github.com/srid/rib/issues/161
2020-06-12 17:23:52 +01:00
rib = doJailbreak ( super . rib . override {
dhall = self . dhall_1_30_0 ;
} ) ;
# Necessary for neuron 0.4.0
neuron = super . neuron . override {
dhall = self . dhall_1_30_0 ;
} ;
2020-06-14 16:52:06 +01:00
# Necessary for stack
# x509-validation test suite hangs: upstream https://github.com/vincenthz/hs-certificate/issues/120
# tls test suite fails: upstream https://github.com/vincenthz/hs-tls/issues/434
2020-06-13 22:53:57 +01:00
x509-validation = dontCheck super . x509-validation ;
2020-06-13 23:14:52 +01:00
tls = dontCheck super . tls ;
2020-06-13 22:53:57 +01:00
2020-06-13 22:01:44 +01:00
# Upstream PR: https://github.com/bgamari/monoidal-containers/pull/62
# Bump these version bound
monoidal-containers = appendPatch super . monoidal-containers ( pkgs . fetchpatch {
2020-06-21 16:05:18 +01:00
url = " h t t p s : / / g i t h u b . c o m / b g a m a r i / m o n o i d a l - c o n t a i n e r s / c o m m i t / 7 1 5 0 9 3 b 2 2 a 0 1 5 3 9 8 a 1 3 9 0 f 6 3 6 b e 6 f 3 9 a 0 d e 8 3 2 5 4 . p a t c h " ;
2020-06-13 22:01:44 +01:00
sha256 = " 1 l f x v w p 8 g 5 5 l j x v j 5 0 a c s b 0 w j h r v p 2 h v i r 8 y 0 j 5 p f j k d 1 k q 6 2 8 n g " ;
} ) ;
patch = appendPatches super . patch [
# Upstream PR: https://github.com/reflex-frp/patch/pull/20
# Makes tests work with hlint 3
( pkgs . fetchpatch {
2020-06-21 16:05:18 +01:00
url = " h t t p s : / / g i t h u b . c o m / r e f l e x - f r p / p a t c h / c o m m i t / 3 e d 2 3 a 4 e 4 0 4 9 e e 1 7 e 6 4 a 1 a 5 b b e b f 1 9 9 0 c d b e 0 3 3 a . p a t c h " ;
2020-06-13 22:01:44 +01:00
sha256 = " 1 h f a 9 8 0 w l n 8 k z b q w 1 l r 8 d d s z g c i b w 2 5 x f 1 2 k i 2 j b 9 x k l 4 6 4 a y n z f " ;
} )
# Upstream PR: https://github.com/reflex-frp/patch/pull/17
# Bumps version dependencies
( pkgs . fetchpatch {
2020-06-21 16:05:18 +01:00
url = " h t t p s : / / g i t h u b . c o m / r e f l e x - f r p / p a t c h / c o m m i t / a 1 9 1 e d 9 d e d 7 0 8 e d 7 f f 0 c f 5 3 a d 6 d a f a f 5 4 d b 5 b 9 5 a . p a t c h " ;
2020-06-13 22:01:44 +01:00
sha256 = " 1 x 9 w 5 f i m h k 3 a 0 l 2 a a 5 z 9 1 n q a a 6 s 2 i r z 1 7 7 5 i i d d 0 1 9 1 m 6 w 2 5 v s z p " ;
} )
] ;
reflex = appendPatches super . reflex [
# Upstream PR: https://github.com/reflex-frp/reflex/pull/434
# Bump version bounds
( pkgs . fetchpatch {
2020-06-21 16:05:18 +01:00
url = " h t t p s : / / g i t h u b . c o m / r e f l e x - f r p / r e f l e x / c o m m i t / e 6 1 0 4 b d f d 7 f 6 6 4 f 5 2 4 b 6 7 6 5 2 7 5 4 9 0 7 2 2 e 3 7 6 d f 4 d . p a t c h " ;
2020-06-13 22:01:44 +01:00
sha256 = " 1 a w p 5 p 4 6 4 0 c n h f d 5 0 d p l s v p 0 k z y 6 h 8 r 0 h p b w 1 s 4 0 b l n i 7 4 r 3 d h z r " ;
} )
# Upstream PR: https://github.com/reflex-frp/reflex/pull/436
# Fix build with newest dependent-map version
( pkgs . fetchpatch {
2020-06-21 16:05:18 +01:00
url = " h t t p s : / / g i t h u b . c o m / r e f l e x - f r p / r e f l e x / c o m m i t / d c 3 b f 4 4 d 8 2 2 d 7 0 5 9 4 e 3 c 4 7 4 f e 3 8 6 9 2 6 1 7 7 6 c 3 5 5 4 . p a t c h " ;
2020-06-13 22:01:44 +01:00
sha256 = " 0 r b j f j 9 b 8 p 6 z k v d 5 j 4 p a k 5 k p g a r d 6 c y f v z k 7 5 0 s 4 x w p c 1 v 8 4 i i q d " ;
} )
# Upstream PR: https://github.com/reflex-frp/reflex/pull/437
# Fix tests with newer dep versions
( pkgs . fetchpatch {
2020-06-21 16:05:18 +01:00
url = " h t t p s : / / g i t h u b . c o m / r e f l e x - f r p / r e f l e x / c o m m i t / 8 7 c 7 4 a 1 b 9 d 9 0 9 8 e a e 8 a 5 6 1 4 8 c 5 9 e d 4 9 6 3 a 5 2 3 2 c 2 . p a t c h " ;
2020-06-13 22:01:44 +01:00
sha256 = " 0 q h j j g d 6 n 4 f m s 1 h p b b l n y 7 8 c 9 5 b f h 7 4 i z h x 9 d v r d l n h z 6 q 7 x l m 9 q " ;
} )
] ;
# Tests disabled and broken override needed because of missing lib chrome-test-utils: https://github.com/reflex-frp/reflex-dom/issues/392
# Tests disabled because of very old dep: https://github.com/reflex-frp/reflex-dom/issues/393
2020-06-21 16:05:18 +01:00
reflex-dom-core = doDistribute ( unmarkBroken ( dontCheck ( appendPatches super . reflex-dom-core [
2020-06-13 22:01:44 +01:00
# Upstream PR: https://github.com/reflex-frp/reflex-dom/pull/388
# Fix upper bounds
( pkgs . fetchpatch {
2020-06-21 16:05:18 +01:00
url = " h t t p s : / / g i t h u b . c o m / r e f l e x - f r p / r e f l e x - d o m / c o m m i t / 5 e f 0 4 d 8 e 4 7 8 f 4 1 0 d 2 c 6 3 6 0 3 b 8 4 a f 0 5 2 c 9 2 7 3 a 5 3 3 . p a t c h " ;
2020-06-13 22:01:44 +01:00
sha256 = " 0 d 0 b 8 1 9 y h 8 m q w 8 i h 5 a s d i 9 q c c a 2 k m g g f s i 8 g f 2 2 a k f w 1 n 7 x v m a v i " ;
stripLen = 2 ;
extraPrefix = " " ;
} )
# Upstream PR: https://github.com/reflex-frp/reflex-dom/pull/394
# Bump dependent-map
( pkgs . fetchpatch {
2020-06-21 16:05:18 +01:00
url = " h t t p s : / / g i t h u b . c o m / r e f l e x - f r p / r e f l e x - d o m / c o m m i t / 6 9 5 b d 1 7 d 5 d c d b 1 b f 3 2 1 e e 8 8 5 8 6 7 0 7 3 1 6 3 7 f 6 5 1 d b . p a t c h " ;
2020-06-13 22:01:44 +01:00
sha256 = " 0 l l k y 3 i 3 7 r a k g s w 9 v q a q m w r y v 7 s 9 1 w 8 p h 8 x j k h 8 3 n x j s 1 4 p 5 z f y k " ;
stripLen = 2 ;
extraPrefix = " " ;
} )
2020-06-21 16:05:18 +01:00
] ) ) ) ;
2020-06-19 20:50:15 +01:00
2020-06-19 16:26:42 +01:00
# add unreleased commit fixing version constraint as a patch
# Can be removed if https://github.com/lpeterse/haskell-utc/issues/8 is resolved
utc = appendPatch super . utc ( pkgs . fetchpatch {
url = " h t t p s : / / g i t h u b . c o m / l p e t e r s e / h a s k e l l - u t c / c o m m i t / e 4 5 0 2 c 0 8 5 9 1 e 8 0 d 4 1 1 1 2 9 b b 7 c 0 4 1 4 5 3 9 f 6 3 0 2 a a f . d i f f " ;
sha256 = " 0 v 6 k v 1 d 4 s y j z g z c 2 s 7 a 7 6 c 6 k 4 v m i n l c q 6 2 n 7 j g 3 n n 9 x d 0 0 g w m m v 7 " ;
} ) ;
2020-06-22 20:40:20 +01:00
# Picking fixed version constraint from upstream
# Issue: https://github.com/ghcjs/jsaddle/issues/115
# Tests disabled because they assume to run in the whole jsaddle repo and not the hackage tarbal of jsaddle-warp.
jsaddle-warp = dontCheck ( appendPatch super . jsaddle-warp ( pkgs . fetchpatch {
url = " h t t p s : / / g i t h u b . c o m / g h c j s / j s a d d l e / c o m m i t / 8 6 b 1 6 6 0 3 3 1 8 6 c 1 7 2 4 d 4 d 5 2 e e a f 0 9 3 5 f 0 f 2 9 f e 1 c a . p a t c h " ;
sha256 = " 0 j 4 g 3 h c q r a n d l n z r 9 n 9 m i x y g g 8 6 a c c d y k 2 n y j 9 h h 9 g 4 p 7 m r c y b 7 j " ;
stripLen = 2 ;
extraPrefix = " " ;
} ) ) ;
2020-06-23 23:21:29 +01:00
# 2020-06-24: Jailbreaking because of restrictive test dep bounds
# Upstream issue: https://github.com/kowainik/trial/issues/62
trial = doJailbreak super . trial ;
# 2020-06-24: Tests are broken in hackage distribution.
# See: https://github.com/kowainik/stan/issues/316
stan = dontCheck super . stan ;
2020-06-26 20:06:48 +01:00
2020-06-24 17:54:42 +01:00
# 2020-06-24: Tests are broken in hackage distribution.
# See: https://github.com/robstewart57/rdf4h/issues/39
rdf4h = dontCheck super . rdf4h ;
2020-07-03 19:47:17 +01:00
2020-06-25 13:23:09 +01:00
# hasn't bumped upper bounds
# test fails: "floskell-test: styles/base.md: openBinaryFile: does not exist (No such file or directory)"
# https://github.com/ennocramer/floskell/issues/48
floskell = dontCheck ( doJailbreak super . floskell ) ;
# hasn't bumped upper bounds
# test fails because of a "Warning: Unused LANGUAGE pragma"
# https://github.com/ennocramer/monad-dijkstra/issues/4
monad-dijkstra = dontCheck ( doJailbreak super . monad-dijkstra ) ;
# haskell-language-server uses its own fork of ghcide
# Test disabled: it seems to freeze (is it just that it takes a long time ?)
2020-07-03 19:47:17 +01:00
hls-ghcide =
2020-06-25 13:23:09 +01:00
dontCheck (
overrideCabal super . hls-ghcide
( old : {
# The integration test run by lsp-test requires the executable to be in the PATH
preCheck = ''
export PATH = $ PATH:dist/build/ghcide
'' ;
} )
) ;
haskell-language-server = ( overrideCabal super . haskell-language-server
( old : {
# The integration test run by lsp-test requires the executable to be in the PATH
preCheck = ''
export PATH = $ PATH:dist/build/haskell-language-server
'' ;
# test needs the git tool
testToolDepends = old . testToolDepends
++ [ pkgs . git ] ;
} ) ) . override {
# use a fork of ghcide
ghcide = self . hls-ghcide ;
# use specific version
ormolu = super . ormolu_0_0_5_0 ;
} ;
2020-06-23 23:21:29 +01:00
2020-06-26 20:06:48 +01:00
# https://github.com/kowainik/policeman/issues/57
policeman = doJailbreak super . policeman ;
2020-06-29 10:03:06 +01:00
# 2020-06-29: These three packages have bumped their dependencies for haskell-gi and haskell-gi-base beyond stack-lts.
# Choosing a jailbreak, because a version override would rebuild most of the glibverse and the packages still build with the older version.
gi-javascriptcore =
# Remove these jailbreaks, when assert fails.
assert ( pkgs . lib . versionOlder super . haskell-gi-base . version " 0 . 2 4 " ) ;
doJailbreak super . gi-javascriptcore ;
gi-soup = doJailbreak super . gi-soup ;
gi-webkit2 = doJailbreak super . gi-webkit2 ;
2018-08-13 19:06:09 +01:00
} // import ./configuration-tensorflow.nix { inherit pkgs haskellLib ; } self super