aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix')
-rw-r--r--nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix119
1 files changed, 25 insertions, 94 deletions
diff --git a/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix b/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
index a233185cf4b..292a703b13c 100644
--- a/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
+++ b/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
@@ -42,9 +42,11 @@ self: super: {
xhtml = null;
# Ignore overly restrictive upper version bounds.
+ aeson-diff = doJailbreak super.aeson-diff;
async = doJailbreak super.async;
cabal-install = doJailbreak super.cabal-install;
ChasingBottoms = doJailbreak super.ChasingBottoms;
+ chell = doJailbreak super.chell;
cryptohash-sha256 = doJailbreak super.cryptohash-sha256;
Diff = dontCheck super.Diff;
doctest = doJailbreak super.doctest;
@@ -57,96 +59,41 @@ self: super: {
quickcheck-instances = doJailbreak super.quickcheck-instances;
setlocale = doJailbreak super.setlocale;
split = doJailbreak super.split;
+ system-fileio = doJailbreak super.system-fileio;
tasty-expected-failure = doJailbreak super.tasty-expected-failure;
+ tasty-hedgehog = doJailbreak super.tasty-hedgehog;
test-framework = doJailbreak super.test-framework;
+ th-expand-syns = doJailbreak super.th-expand-syns;
+
+ # use latest version to fix the build
+ hackage-db = self.hackage-db_2_1_0;
+ lens = self.lens_4_18_1;
+ memory = self.memory_0_15_0;
+ microlens = self.microlens_0_4_11_2;
+ optparse-applicative = self.optparse-applicative_0_15_1_0;
+ primitive = dontCheck super.primitive_0_7_0_0; # evaluating the test suite gives an infinite recursion
+ regex-base = self.regex-base_0_94_0_0;
+ regex-pcre-builtin = self.regex-pcre-builtin_0_95_1_1_8_43;
+ regex-posix = self.regex-posix_0_96_0_0;
+ regex-tdfa = self.regex-tdfa_1_3_0;
+ shelly = self.shelly_1_9_0;
+ tls = self.tls_1_5_1;
+ xmonad-contrib = self.xmonad-contrib_0_16;
# These packages don't work and need patching and/or an update.
- primitive = overrideSrc (doJailbreak super.primitive) {
- version = "20180530-git";
- src = pkgs.fetchFromGitHub {
- owner = "haskell";
- repo = "primitive";
- rev = "97964182881aa0419546e0bb188b2d17e4468324";
- sha256 = "1p1pinca33vd10iy7hl20c1fc99vharcgcai6z3ngqbq50k2pd3q";
- };
- };
- vector-th-unbox = appendPatch (doJailbreak super.vector-th-unbox) (pkgs.fetchpatch {
- url = "https://raw.githubusercontent.com/hvr/head.hackage/master/patches/vector-th-unbox-0.2.1.6.patch";
- sha256 = "0169yf9ms1g5mmkc5l6hpffzm34zdrqdng4df02nbdmfgba45h19";
- });
- regex-base = overrideCabal (appendPatch super.regex-base (pkgs.fetchpatch {
- url = "https://raw.githubusercontent.com/hvr/head.hackage/master/patches/regex-base-0.93.2.patch";
- sha256 = "01d1plrdx6hcspwn2h6y9pyi5366qk926vb5cl5qcl6x4m23l6y1";
- })) (drv: {
- preConfigure = "sed -i -e 's/base >=4 && < 4.13,/base,/' regex-base.cabal";
- });
- 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";
- });
- optparse-applicative = appendPatch (doJailbreak super.optparse-applicative) (pkgs.fetchpatch {
- url = "https://raw.githubusercontent.com/hvr/head.hackage/master/patches/optparse-applicative-0.14.3.0.patch";
- sha256 = "068sjj98jqiq3h8h03mg4w2pa11q8lxkx2i4lmxivq77xyhlwq3y";
- });
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";
});
- hedgehog = appendPatch (doJailbreak super.hedgehog) (pkgs.fetchpatch {
- url = "https://gitlab.haskell.org/ghc/head.hackage/raw/master/patches/hedgehog-1.0.patch";
- sha256 = "16gadh1hb74jqvzc9c893sffb1y2vjglblyrqjwp7xfhccq7g8yw";
- });
- easytest = markBroken super.easytest;
- easytest_0_3 = markBroken super.easytest_0_3;
- regex-tdfa = appendPatch super.regex-tdfa (pkgs.fetchpatch {
- url = "https://raw.githubusercontent.com/hvr/head.hackage/master/patches/regex-tdfa-1.2.3.1.patch";
- sha256 = "1lhas4s2ms666prb475gaw2bqw1v4y8cxi66sy20j727sx7ppjs7";
- });
- socks = appendPatch (doJailbreak super.socks) (pkgs.fetchpatch {
- url = "https://raw.githubusercontent.com/hvr/head.hackage/master/patches/socks-0.6.0.patch";
- sha256 = "1dsqmx0sw62x4glh43c0sbizd2y00v5xybiqadn96v6pmfrap5cp";
- });
- lens = self.lens_4_18_1;
- xmonad-contrib = self.xmonad-contrib_0_16;
polyparse = appendPatch (doJailbreak super.polyparse) (pkgs.fetchpatch {
url = "https://raw.githubusercontent.com/hvr/head.hackage/master/patches/polyparse-1.12.1.patch";
sha256 = "01b2gnsq0x4fd9na8zpk6pajym55mbz64hgzawlwxdw0y6681kr5";
});
foundation = dontCheck super.foundation;
- memory = overrideCabal (appendPatch super.memory (pkgs.fetchpatch {
- url = "https://raw.githubusercontent.com/hvr/head.hackage/master/patches/memory-0.14.18.patch";
- sha256 = "16ar8921s3bi31y1az9zgyg0iaxxc2wvvwqjnl11a17p03wi6b29";
- })) (drv: {
- editedCabalFile = null;
- preConfigure = ''
- cp -v ${pkgs.fetchurl {url = "https://raw.githubusercontent.com/hvr/head.hackage/master/patches/memory-0.14.18.cabal"; sha256 = "1325wny0irnq51rz0f4xgkvm01p6n4z5jid2jgpkhjac8a2sdgwl";}} memory.cabal
- '';
- });
- chell = overrideCabal (doJailbreak super.chell) (_drv: {
- broken = false;
- });
- th-expand-syns = doJailbreak super.th-expand-syns;
- shelly = overrideCabal (appendPatch (doJailbreak super.shelly) (pkgs.fetchpatch {
- url = "https://raw.githubusercontent.com/hvr/head.hackage/master/patches/shelly-1.8.1.patch";
- sha256 = "1kglbwrr4ra81v9x3bfsk5l6pyl0my2a1zkr3qjjx7acn0dfpgbc";
- })) (drv: {
- editedCabalFile = null;
- preConfigure = ''
- cp -v ${pkgs.fetchurl {url = "https://raw.githubusercontent.com/hvr/head.hackage/master/patches/shelly-1.8.1.cabal"; sha256 = "0crf0m077wky76f5nav2p9q4fa5q4yhv5l4bq9hd073dzdaywhz0";}} shelly.cabal
- sed -i -e 's/< 1.9,/< 2,/' shelly.cabal # bump time version
- '';
- });
- system-fileio = doJailbreak super.system-fileio;
- tasty-hedgehog = doJailbreak super.tasty-hedgehog;
haskell-src-meta = appendPatch (dontCheck (doJailbreak super.haskell-src-meta)) (pkgs.fetchpatch {
url = "https://gitlab.haskell.org/ghc/head.hackage/raw/master/patches/haskell-src-meta-0.8.3.patch";
sha256 = "1asl932mibr5y057xx8v1a7n3qy87lcnclsfh8pbxq1m3iwjkxy8";
});
- asn1-encoding = appendPatch (dontCheck (doJailbreak super.asn1-encoding)) (pkgs.fetchpatch {
- url = "https://gitlab.haskell.org/ghc/head.hackage/raw/master/patches/asn1-encoding-0.9.5.patch";
- sha256 = "0a3159rnaw6shjzdm46799crd4pxh33s23qy51xa7z6nv5q8wsb5";
- });
- tls = self.tls_1_5_1;
vault = dontHaddock super.vault;
monad-par = dontCheck super.monad-par; # test suite does not compile in monad-par-0.3.4.8
@@ -156,29 +103,13 @@ self: super: {
sha256 = "1v40gmnw4lqyk271wngdwz8whpfdhmza58srbkka8icwwwrck3l5";
});
- # don't use obsolete "defaultUserHooks" in Setup.hs
- X11 = appendPatch super.X11 (pkgs.fetchpatch {
- url = "https://github.com/xmonad/X11/commit/8d817617afa1b54e6c50a9cc552dc1c0804c1794.patch";
- sha256 = "0zsgzn0nvdxvqi5z0za3gzlhql2x5d5cr0kkr19j5c67fy177w6b";
- });
-
- # over-specified version constraints
- aeson-diff = doJailbreak super.aeson-diff;
-
- # https://github.com/sol/hpack/issues/371
- hpack = markBrokenVersion "0.32.0" super.hpack;
-
# Upstream ships a broken Setup.hs file.
csv = overrideCabal super.csv (drv: { prePatch = "rm Setup.hs"; });
- # Upstream ships a broken Setup.hs file.
- string-qq = overrideSrc (dontCheck super.string-qq) {
- src = pkgs.fetchFromGitHub {
- owner = "dmwit";
- repo = "string-qq";
- rev = "b396f5ef36a9b23f1d3fafcc91f2222cd1ad24fe";
- sha256 = "1z2f1yry8wi0jb38dgz7rl89zl63fhngf7xk4ljw240vn315jj8s";
- };
- };
+ # mark broken packages
+ bencode = markBrokenVersion "0.6.0.0" super.bencode;
+ easytest = markBroken super.easytest;
+ easytest_0_3 = markBroken super.easytest_0_3;
+ haskell-src = markBrokenVersion "1.0.3.0" super.haskell-src;
}