Merge master into staging-next
This commit is contained in:
@@ -142,6 +142,7 @@ self: super: {
|
||||
feldspar-signal = dontHaddock super.feldspar-signal; # https://github.com/markus-git/feldspar-signal/issues/1
|
||||
hoodle-core = dontHaddock super.hoodle-core;
|
||||
hsc3-db = dontHaddock super.hsc3-db;
|
||||
classy-prelude-yesod = dontHaddock super.classy-prelude-yesod; # https://github.com/haskell/haddock/issues/979
|
||||
|
||||
# https://github.com/techtangents/ablist/issues/1
|
||||
ABList = dontCheck super.ABList;
|
||||
@@ -1262,4 +1263,8 @@ self: super: {
|
||||
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; });
|
||||
|
||||
# Some tests depend on a postgresql instance
|
||||
# Haddock failure: https://github.com/haskell/haddock/issues/979
|
||||
esqueleto = dontHaddock (dontCheck super.esqueleto);
|
||||
|
||||
} // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super
|
||||
|
||||
@@ -41,8 +41,16 @@ self: super: {
|
||||
unix = null;
|
||||
xhtml = null;
|
||||
|
||||
# Use our native version of the Cabal library.
|
||||
cabal-install = (doJailbreak super.cabal-install).overrideScope (self: super: { Cabal = null; });
|
||||
|
||||
# Ignore overly restrictive upper version bounds.
|
||||
cryptohash-sha256 = doJailbreak super.cryptohash-sha256;
|
||||
doctest = doJailbreak super.doctest;
|
||||
split = doJailbreak super.split;
|
||||
test-framework = doJailbreak super.test-framework;
|
||||
hashable = doJailbreak super.hashable;
|
||||
async = doJailbreak super.async;
|
||||
|
||||
# These packages don't work and need patching and/or an update.
|
||||
primitive = overrideSrc (doJailbreak super.primitive) {
|
||||
@@ -54,5 +62,76 @@ self: super: {
|
||||
sha256 = "1p1pinca33vd10iy7hl20c1fc99vharcgcai6z3ngqbq50k2pd3q";
|
||||
};
|
||||
};
|
||||
tar = overrideCabal (appendPatch super.tar (pkgs.fetchpatch {
|
||||
url = "https://raw.githubusercontent.com/hvr/head.hackage/master/patches/tar-0.5.1.0.patch";
|
||||
sha256 = "1inbfpamfdpi3yfac59j5xpaq5fvh5g1ca8hlbpic1bizd3s03i0";
|
||||
})) (drv: {
|
||||
configureFlags = ["-f-old-time"];
|
||||
editedCabalFile = null;
|
||||
preConfigure = ''
|
||||
cp -v ${pkgs.fetchurl {url = "https://raw.githubusercontent.com/hvr/head.hackage/master/patches/tar-0.5.1.0.cabal"; sha256 = "1lydbwsmccf2av0g61j07bx7r5mzbcfgwvmh0qwg3a91857x264x";}} tar.cabal
|
||||
sed -i -e 's/time < 1.9/time < 2/' tar.cabal
|
||||
'';
|
||||
});
|
||||
resolv = overrideCabal (overrideSrc super.resolv {
|
||||
version = "20180411-git";
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "haskell-hvr";
|
||||
repo = "resolv";
|
||||
rev = "a22f9dd900cb276b3dd70f4781fb436d617e2186";
|
||||
sha256 = "1j2jyywmxjhyk46kxff625yvg5y37knv7q6y0qkwiqdwdsppccdk";
|
||||
};
|
||||
}) (drv: {
|
||||
buildTools = with pkgs; [autoconf];
|
||||
preConfigure = "autoreconf --install";
|
||||
});
|
||||
colour = appendPatch super.colour (pkgs.fetchpatch {
|
||||
url = "https://raw.githubusercontent.com/hvr/head.hackage/master/patches/colour-2.3.4.patch";
|
||||
sha256 = "1h318dczml9qrmfvlz1d12iji86klaxvz63k9g9awibwz8lw2i79";
|
||||
});
|
||||
dlist = appendPatch super.dlist (pkgs.fetchpatch {
|
||||
url = "https://raw.githubusercontent.com/hvr/head.hackage/master/patches/dlist-0.8.0.6.patch";
|
||||
sha256 = "0lkhibfxfk6mi796mrjgmbb50hbyjgc7xdinci64dahj8325jlpc";
|
||||
});
|
||||
QuickCheck = appendPatch super.QuickCheck (pkgs.fetchpatch {
|
||||
url = "https://raw.githubusercontent.com/hvr/head.hackage/master/patches/QuickCheck-2.13.1.patch";
|
||||
sha256 = "138yrp3x5cnvncimrnhnkawz6clyk7fj3sr3y93l5szfr11kcvbl";
|
||||
});
|
||||
regex-base = appendPatch super.regex-base (pkgs.fetchpatch {
|
||||
url = "https://raw.githubusercontent.com/hvr/head.hackage/master/patches/regex-base-0.93.2.patch";
|
||||
sha256 = "01d1plrdx6hcspwn2h6y9pyi5366qk926vb5cl5qcl6x4m23l6y1";
|
||||
});
|
||||
regex-posix = appendPatch super.regex-posix (pkgs.fetchpatch {
|
||||
url = "https://raw.githubusercontent.com/hvr/head.hackage/master/patches/regex-posix-0.95.2.patch";
|
||||
sha256 = "006yli58jpqp786zm1xlncjsilc38iv3a09r4pv94l587sdzasd2";
|
||||
});
|
||||
exceptions = appendPatch (doJailbreak super.exceptions) (pkgs.fetchpatch {
|
||||
url = "https://raw.githubusercontent.com/hvr/head.hackage/master/patches/exceptions-0.10.1.patch";
|
||||
sha256 = "0427jg027dcckiy21zk29c49fzx4q866rqbabmh4wvqwwkz8yk37";
|
||||
});
|
||||
th-abstraction = appendPatch (doJailbreak super.th-abstraction) (pkgs.fetchpatch {
|
||||
url = "https://raw.githubusercontent.com/hvr/head.hackage/master/patches/th-abstraction-0.2.11.0.patch";
|
||||
sha256 = "0czqfszfblz6bvsybcd1z5jijj79f9czqq6dn992wp2gibsbrgj3";
|
||||
});
|
||||
logict = appendPatch (doJailbreak super.logict) (pkgs.fetchpatch {
|
||||
url = "https://raw.githubusercontent.com/hvr/head.hackage/master/patches/logict-0.6.0.2.patch";
|
||||
sha256 = "0my2n0r9pb35994q0xka96fv5jdpjdfwqppi5lily3rgzkajsixn";
|
||||
});
|
||||
zlib = appendPatch super.zlib (pkgs.fetchpatch {
|
||||
url = "https://raw.githubusercontent.com/hvr/head.hackage/master/patches/zlib-0.6.2.patch";
|
||||
sha256 = "13fy730z9ihyc9kw3qkh642mi0bdbd7bz01dksj1zz845pr9jjif";
|
||||
});
|
||||
optparse-applicative = appendPatch super.optparse-applicative (pkgs.fetchpatch {
|
||||
url = "https://raw.githubusercontent.com/hvr/head.hackage/master/patches/optparse-applicative-0.14.3.0.patch";
|
||||
sha256 = "068sjj98jqiq3h8h03mg4w2pa11q8lxkx2i4lmxivq77xyhlwq3y";
|
||||
});
|
||||
HTTP = appendPatch (doJailbreak super.HTTP) (pkgs.fetchpatch {
|
||||
url = "https://raw.githubusercontent.com/hvr/head.hackage/master/patches/HTTP-4000.3.13.patch";
|
||||
sha256 = "1fadi529x7dnmbfmls5969qfn9d4z954nc4lbqxmrwgirphkpmn4";
|
||||
});
|
||||
hackage-security = appendPatch (doJailbreak super.hackage-security) (pkgs.fetchpatch {
|
||||
url = "https://raw.githubusercontent.com/hvr/head.hackage/master/patches/hackage-security-0.5.3.0.patch";
|
||||
sha256 = "0l8x0pbsn18fj5ak5q0g5rva4xw1s9yc4d86a1pfyaz467b9i5a4";
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
@@ -3495,7 +3495,6 @@ broken-packages:
|
||||
- ClassLaws
|
||||
- classy-miso
|
||||
- classy-parallel
|
||||
- classy-prelude-yesod
|
||||
- ClassyPrelude
|
||||
- clay
|
||||
- clckwrks
|
||||
@@ -4323,7 +4322,6 @@ broken-packages:
|
||||
- esotericbot
|
||||
- EsounD
|
||||
- espial
|
||||
- esqueleto
|
||||
- ess
|
||||
- estimators
|
||||
- EstProgress
|
||||
@@ -5614,7 +5612,6 @@ broken-packages:
|
||||
- Hmpf
|
||||
- hmt-diagrams
|
||||
- hmumps
|
||||
- hnix
|
||||
- HNM
|
||||
- hnormalise
|
||||
- ho-rewriting
|
||||
@@ -7172,6 +7169,8 @@ broken-packages:
|
||||
- NestedFunctor
|
||||
- nestedmap
|
||||
- net-spider
|
||||
- net-spider-pangraph
|
||||
- net-spider-rpl
|
||||
- netclock
|
||||
- netcore
|
||||
- netease-fm
|
||||
@@ -7219,6 +7218,7 @@ broken-packages:
|
||||
- neural-network-hmatrix
|
||||
- newhope
|
||||
- newports
|
||||
- newsletter-mailgun
|
||||
- newt
|
||||
- newtype-deriving
|
||||
- newtype-th
|
||||
@@ -9940,7 +9940,6 @@ broken-packages:
|
||||
- yesod-links
|
||||
- yesod-lucid
|
||||
- yesod-mangopay
|
||||
- yesod-markdown
|
||||
- yesod-paginate
|
||||
- yesod-pagination
|
||||
- yesod-paginator
|
||||
|
||||
+1279
-282
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user