summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2017-12-20 13:35:07 +0100
committerPeter Simons <simons@cryp.to>2017-12-26 11:35:26 +0100
commiteb0da3e8afebd017e8d93afabd213e095674cceb (patch)
treeedf69b10f3bb6d811fd86be1dfdda80983f64149 /pkgs/development/haskell-modules
parente98e7fb329c73b8f15ead5f49cd222bc1f86d292 (diff)
downloadnixlib-eb0da3e8afebd017e8d93afabd213e095674cceb.tar
nixlib-eb0da3e8afebd017e8d93afabd213e095674cceb.tar.gz
nixlib-eb0da3e8afebd017e8d93afabd213e095674cceb.tar.bz2
nixlib-eb0da3e8afebd017e8d93afabd213e095674cceb.tar.lz
nixlib-eb0da3e8afebd017e8d93afabd213e095674cceb.tar.xz
nixlib-eb0da3e8afebd017e8d93afabd213e095674cceb.tar.zst
nixlib-eb0da3e8afebd017e8d93afabd213e095674cceb.zip
haskell: drop package sets for GHC 6.12.x, 7.0.x, 7.2.x, 7.4.x, and 7.6.x
These old package sets have been broken and unmaintained for a long time now.
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix94
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix85
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix89
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix117
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix124
5 files changed, 0 insertions, 509 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix b/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix
deleted file mode 100644
index 47c8e7fa69ec..000000000000
--- a/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix
+++ /dev/null
@@ -1,94 +0,0 @@
-{ pkgs, haskellLib }:
-
-with haskellLib;
-
-self: super: {
-
-  # LLVM is not supported on this GHC; use the latest one.
-  inherit (pkgs) llvmPackages;
-
-  # Disable GHC 6.12.x core libraries.
-  array = null;
-  base = null;
-  bin-package-db = null;
-  bytestring = null;
-  Cabal = null;
-  containers = null;
-  directory = null;
-  dph-base = null;
-  dph-par = null;
-  dph-prim-interface = null;
-  dph-prim-par = null;
-  dph-prim-seq = null;
-  dph-seq = null;
-  extensible-exceptions = null;
-  ffi = null;
-  filepath = null;
-  ghc-binary = null;
-  ghc-prim = null;
-  haskell98 = null;
-  hpc = null;
-  integer-gmp = null;
-  old-locale = null;
-  old-time = null;
-  pretty = null;
-  process = null;
-  random = null;
-  rts = null;
-  syb = null;
-  template-haskell = null;
-  time = null;
-  unix = null;
-
-  # These packages are core libraries in GHC 7.10.x, but not here.
-  binary = self.binary_0_8_5_1;
-  deepseq = self.deepseq_1_3_0_1;
-  haskeline = self.haskeline_0_7_3_1;
-  hoopl = self.hoopl_3_10_2_0;
-  terminfo = self.terminfo_0_4_0_2;
-  transformers = self.transformers_0_4_3_0;
-  xhtml = self.xhtml_3000_2_1;
-
-  # Requires ghc 8.2
-  ghc-proofs = dontDistribute super.ghc-proofs;
-
-  # We have no working cabal-install at the moment.
-  cabal-install = markBroken super.cabal-install;
-
-  # https://github.com/tibbe/hashable/issues/85
-  hashable = dontCheck super.hashable;
-
-  # Needs Cabal >= 1.18.x.
-  jailbreak-cabal = super.jailbreak-cabal.override { Cabal = self.Cabal_1_18_1_7; };
-
-  # Haddock chokes on the prologue from the cabal file.
-  ChasingBottoms = dontHaddock super.ChasingBottoms;
-
-  # https://github.com/glguy/utf8-string/issues/9
-  utf8-string = overrideCabal super.utf8-string (drv: {
-    configureFlags = drv.configureFlags or [] ++ ["-f-bytestring-in-base" "--ghc-option=-XUndecidableInstances"];
-    preConfigure = "sed -i -e 's|base >= .* < .*,|base,|' utf8-string.cabal";
-  });
-
-  # https://github.com/haskell/HTTP/issues/80
-  HTTP = doJailbreak super.HTTP;
-
-  # 6.12.3 doesn't support the latest version.
-  primitive = self.primitive_0_5_1_0;
-  parallel = self.parallel_3_2_0_3;
-  vector = self.vector_0_10_9_3;
-
-  # These packages need more recent versions of core libraries to compile.
-  happy = addBuildTools super.happy [self.Cabal_1_18_1_7 self.containers_0_4_2_1];
-  network-uri = addBuildTool super.network-uri self.Cabal_1_18_1_7;
-  stm = addBuildTool super.stm self.Cabal_1_18_1_7;
-  split = super.split_0_1_4_3;
-
-  # Needs hashable on pre 7.10.x compilers.
-  nats_1 = addBuildDepend super.nats_1 self.hashable;
-  nats = addBuildDepend super.nats self.hashable;
-
-  # Needs void on pre 7.10.x compilers.
-  conduit = addBuildDepend super.conduit self.void;
-
-}
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix
deleted file mode 100644
index 6bb96704cc20..000000000000
--- a/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix
+++ /dev/null
@@ -1,85 +0,0 @@
-{ pkgs, haskellLib }:
-
-with haskellLib;
-
-self: super: {
-
-  # Suitable LLVM version.
-  llvmPackages = pkgs.llvmPackages_34;
-
-  # Disable GHC 7.0.x core libraries.
-  array = null;
-  base = null;
-  bin-package-db = null;
-  bytestring = null;
-  Cabal = null;
-  containers = null;
-  directory = null;
-  extensible-exceptions = null;
-  ffi = null;
-  filepath = null;
-  ghc-binary = null;
-  ghc-prim = null;
-  haskell2010 = null;
-  haskell98 = null;
-  hpc = null;
-  integer-gmp = null;
-  old-locale = null;
-  old-time = null;
-  pretty = null;
-  process = null;
-  random = null;
-  rts = null;
-  template-haskell = null;
-  time = null;
-  unix = null;
-
-  # These packages are core libraries in GHC 7.10.x, but not here.
-  binary = self.binary_0_7_6_1;
-  deepseq = self.deepseq_1_3_0_1;
-  haskeline = self.haskeline_0_7_3_1;
-  hoopl = self.hoopl_3_10_2_0;
-  terminfo = self.terminfo_0_4_0_2;
-  transformers = self.transformers_0_4_3_0;
-  xhtml = self.xhtml_3000_2_1;
-
-  # Requires ghc 8.2
-  ghc-proofs = dontDistribute super.ghc-proofs;
-
-  # https://github.com/tibbe/hashable/issues/85
-  hashable = dontCheck super.hashable;
-
-  # https://github.com/peti/jailbreak-cabal/issues/9
-  jailbreak-cabal = super.jailbreak-cabal.override {
-    Cabal = self.Cabal_1_20_0_4.override { deepseq = self.deepseq_1_3_0_1; };
-  };
-
-  # Haddock chokes on the prologue from the cabal file.
-  ChasingBottoms = dontHaddock super.ChasingBottoms;
-
-  # https://github.com/haskell/containers/issues/134
-  containers_0_4_2_1 = doJailbreak super.containers_0_4_2_1;
-
-  # These packages need more recent versions of core libraries to compile.
-  happy = addBuildTools super.happy [self.containers_0_4_2_1 self.deepseq_1_3_0_1];
-
-  # Setup: Can't find transitive deps for haddock
-  doctest = dontHaddock super.doctest;
-  hsdns = dontHaddock super.hsdns;
-
-  # Newer versions require bytestring >=0.10.
-  tar = super.tar_0_4_1_0;
-
-  # These builds need additional dependencies on old compilers.
-  nats_1 = addBuildDepend super.nats_1 self.hashable;
-  nats = addBuildDepend super.nats self.hashable;
-  conduit = addBuildDepend super.conduit self.void;
-  reflection = addBuildDepend super.reflection self.tagged;
-  semigroups = addBuildDepend super.semigroups self.nats;
-  text = addBuildDepend super.text self.bytestring-builder;
-
-  # Newer versions don't compile any longer.
-  network_2_6_3_1 = dontCheck super.network_2_6_3_1;
-  network = self.network_2_6_3_1;
-
-}
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix
deleted file mode 100644
index de47086409be..000000000000
--- a/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix
+++ /dev/null
@@ -1,89 +0,0 @@
-{ pkgs, haskellLib }:
-
-with haskellLib;
-
-self: super: {
-
-  # Suitable LLVM version.
-  llvmPackages = pkgs.llvmPackages_34;
-
-  # Disable GHC 7.2.x core libraries.
-  array = null;
-  base = null;
-  binary = null;
-  bin-package-db = null;
-  bytestring = null;
-  Cabal = null;
-  containers = null;
-  directory = null;
-  extensible-exceptions = null;
-  ffi = null;
-  filepath = null;
-  ghc-prim = null;
-  haskell2010 = null;
-  haskell98 = null;
-  hoopl = null;
-  hpc = null;
-  integer-gmp = null;
-  old-locale = null;
-  old-time = null;
-  pretty = null;
-  process = null;
-  rts = null;
-  template-haskell = null;
-  time = null;
-  unix = null;
-
-  # These packages are core libraries in GHC 7.10.x, but not here.
-  deepseq = self.deepseq_1_3_0_1;
-  haskeline = self.haskeline_0_7_3_1;
-  terminfo = self.terminfo_0_4_0_2;
-  transformers = self.transformers_0_4_3_0;
-  xhtml = self.xhtml_3000_2_1;
-
-  # https://github.com/haskell/cabal/issues/2322
-  Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = self.binary_0_8_5_1; process = self.process_1_2_3_0; };
-
-  # Requires ghc 8.2
-  ghc-proofs = dontDistribute super.ghc-proofs;
-
-  # https://github.com/tibbe/hashable/issues/85
-  hashable = dontCheck super.hashable;
-
-  # https://github.com/peti/jailbreak-cabal/issues/9
-  jailbreak-cabal = super.jailbreak-cabal.override {
-    Cabal = self.Cabal_1_20_0_4.override { deepseq = self.deepseq_1_3_0_1; };
-  };
-
-  # Haddock chokes on the prologue from the cabal file.
-  ChasingBottoms = dontHaddock super.ChasingBottoms;
-
-  # The old containers version won't compile against newer versions of deepseq.
-  containers_0_4_2_1 = super.containers_0_4_2_1.override { deepseq = self.deepseq_1_3_0_1; };
-
-  # These packages need more recent versions of core libraries to compile.
-  happy = addBuildTools super.happy [self.containers_0_4_2_1 self.deepseq_1_3_0_1];
-
-  # Setup: Can't find transitive deps for haddock
-  doctest = dontHaddock super.doctest;
-  hsdns = dontHaddock super.hsdns;
-
-  # Needs hashable on pre 7.10.x compilers.
-  nats_1 = addBuildDepend super.nats_1 self.hashable;
-  nats = addBuildDepend super.nats self.hashable;
-
-  # Newer versions require bytestring >=0.10.
-  tar = super.tar_0_4_1_0;
-
-  # These builds need additional dependencies on old compilers.
-  conduit = addBuildDepend super.conduit self.void;
-  reflection = addBuildDepend super.reflection self.tagged;
-  semigroups = addBuildDepend super.semigroups self.nats;
-  optparse-applicative = addBuildDepend super.optparse-applicative self.semigroups;
-  text = addBuildDepend super.text self.bytestring-builder;
-
-  # Newer versions don't compile any longer.
-  network_2_6_3_1 = dontCheck super.network_2_6_3_1;
-  network = self.network_2_6_3_1;
-
-}
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix
deleted file mode 100644
index 73bc28b4dd34..000000000000
--- a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix
+++ /dev/null
@@ -1,117 +0,0 @@
-{ pkgs, haskellLib }:
-
-with haskellLib;
-
-self: super: {
-
-  # Suitable LLVM version.
-  llvmPackages = pkgs.llvmPackages_34;
-
-  # Disable GHC 7.4.x core libraries.
-  array = null;
-  base = null;
-  binary = null;
-  bin-package-db = null;
-  bytestring = null;
-  Cabal = null;
-  containers = null;
-  deepseq = null;
-  directory = null;
-  extensible-exceptions = null;
-  filepath = null;
-  ghc-prim = null;
-  haskell2010 = null;
-  haskell98 = null;
-  hoopl = null;
-  hpc = null;
-  integer-gmp = null;
-  old-locale = null;
-  old-time = null;
-  pretty = null;
-  process = null;
-  rts = null;
-  template-haskell = null;
-  time = null;
-  unix = null;
-
-  # These packages are core libraries in GHC 7.10.x, but not here.
-  haskeline = self.haskeline_0_7_3_1;
-  terminfo = self.terminfo_0_4_0_2;
-  transformers = self.transformers_0_4_3_0;
-  xhtml = self.xhtml_3000_2_1;
-
-  # https://github.com/haskell/cabal/issues/2322
-  Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = dontCheck self.binary_0_8_5_1; };
-
-  # Avoid inconsistent 'binary' versions from 'text' and 'Cabal'.
-  cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_5_1; });
-
-  # Requires ghc 8.2
-  ghc-proofs = dontDistribute super.ghc-proofs;
-
-  # https://github.com/tibbe/hashable/issues/85
-  hashable = dontCheck super.hashable;
-
-  # https://github.com/peti/jailbreak-cabal/issues/9
-  jailbreak-cabal = super.jailbreak-cabal.override { Cabal = self.Cabal_1_20_0_4; };
-
-  # Haddock chokes on the prologue from the cabal file.
-  ChasingBottoms = dontHaddock super.ChasingBottoms;
-
-  # https://github.com/haskell/primitive/issues/16
-  primitive = dontCheck super.primitive;
-
-  # https://github.com/tibbe/unordered-containers/issues/96
-  unordered-containers = dontCheck super.unordered-containers;
-
-  # The test suite depends on time >=1.4.0.2.
-  cookie = dontCheck super.cookie ;
-
-  # Work around bytestring >=0.10.2.0 requirement.
-  streaming-commons = addBuildDepend super.streaming-commons self.bytestring-builder;
-
-  # Choose appropriate flags for our version of 'bytestring'.
-  bytestring-builder = disableCabalFlag super.bytestring-builder "bytestring_has_builder";
-
-  # Newer versions require a more recent compiler.
-  control-monad-free = super.control-monad-free_0_5_3;
-
-  # Needs hashable on pre 7.10.x compilers.
-  nats_1 = addBuildDepend super.nats_1 self.hashable;
-  nats = addBuildDepend super.nats self.hashable;
-
-  # Test suite won't compile.
-  unix-time = dontCheck super.unix-time;
-
-  # The test suite depends on mockery, which pulls in logging-facade, which
-  # doesn't compile with this older version of base:
-  # https://github.com/sol/logging-facade/issues/14
-  doctest = dontCheck super.doctest;
-
-  # Avoid depending on tasty-golden.
-  monad-par = dontCheck super.monad-par;
-
-  # Newer versions require bytestring >=0.10.
-  tar = super.tar_0_4_1_0;
-
-  # Needs void on pre 7.10.x compilers.
-  conduit = addBuildDepend super.conduit self.void;
-
-  # Needs tagged on pre 7.6.x compilers.
-  reflection = addBuildDepend super.reflection self.tagged;
-
-  # These builds need additional dependencies on old compilers.
-  semigroups = addBuildDepends super.semigroups (with self; [nats bytestring-builder tagged unordered-containers transformers]);
-  QuickCheck = addBuildDepends super.QuickCheck (with self; [nats semigroups]);
-  optparse-applicative = addBuildDepend super.optparse-applicative self.semigroups;
-  text = addBuildDepend super.text self.bytestring-builder;
-  vector = addBuildDepend super.vector self.semigroups;
-
-  # Newer versions don't compile any longer.
-  network_2_6_3_1 = dontCheck super.network_2_6_3_1;
-  network = self.network_2_6_3_1;
-
-  # Haddock fails with an internal error.
-  utf8-string = dontHaddock super.utf8-string;
-
-}
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix
deleted file mode 100644
index 43a1b1b70bd1..000000000000
--- a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix
+++ /dev/null
@@ -1,124 +0,0 @@
-{ pkgs, haskellLib }:
-
-with haskellLib;
-
-self: super: {
-
-  # Suitable LLVM version.
-  llvmPackages = pkgs.llvmPackages_34;
-
-  # Disable GHC 7.6.x core libraries.
-  array = null;
-  base = null;
-  binary = null;
-  bin-package-db = null;
-  bytestring = null;
-  Cabal = null;
-  containers = null;
-  deepseq = null;
-  directory = null;
-  filepath = null;
-  ghc-prim = null;
-  haskell2010 = null;
-  haskell98 = null;
-  hoopl = null;
-  hpc = null;
-  integer-gmp = null;
-  old-locale = null;
-  old-time = null;
-  pretty = null;
-  process = null;
-  rts = null;
-  template-haskell = null;
-  time = null;
-  unix = null;
-
-  # These packages are core libraries in GHC 7.10.x, but not here.
-  haskeline = self.haskeline_0_7_3_1;
-  terminfo = self.terminfo_0_4_0_2;
-  transformers = self.transformers_0_4_3_0;
-  xhtml = self.xhtml_3000_2_1;
-
-  # Avoid inconsistent 'binary' versions from 'text' and 'Cabal'.
-  cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_5_1; });
-
-  # Requires ghc 8.2
-  ghc-proofs = dontDistribute super.ghc-proofs;
-
-  # https://github.com/tibbe/hashable/issues/85
-  hashable = dontCheck super.hashable;
-
-  # https://github.com/peti/jailbreak-cabal/issues/9
-  jailbreak-cabal = super.jailbreak-cabal.override { Cabal = self.Cabal_1_20_0_4; };
-
-  # Haddock chokes on the prologue from the cabal file.
-  ChasingBottoms = dontHaddock super.ChasingBottoms;
-
-  # Later versions require a newer version of bytestring than we have.
-  aeson = self.aeson_0_7_0_6;
-
-  # The test suite depends on time >=1.4.0.2.
-  cookie = dontCheck super.cookie;
-
-  # Work around bytestring >=0.10.2.0 requirement.
-  streaming-commons = addBuildDepend super.streaming-commons self.bytestring-builder;
-
-  # Choose appropriate flags for our version of 'bytestring'.
-  bytestring-builder = disableCabalFlag super.bytestring-builder "bytestring_has_builder";
-
-  # Tagged is not part of base in this environment.
-  contravariant = addBuildDepend super.contravariant self.tagged;
-  reflection = dontHaddock (addBuildDepend super.reflection self.tagged);
-
-  # The compat library is empty in the presence of mtl 2.2.x.
-  mtl-compat = dontHaddock super.mtl-compat;
-
-  # Newer versions require a more recent compiler.
-  control-monad-free = super.control-monad-free_0_5_3;
-
-  # Needs hashable on pre 7.10.x compilers.
-  nats_1 = addBuildDepend super.nats_1 self.hashable;
-  nats = addBuildDepend super.nats self.hashable;
-
-  # https://github.com/magthe/sandi/issues/7
-  sandi = overrideCabal super.sandi (drv: {
-    postPatch = "sed -i -e 's|base ==4.8.*,|base,|' sandi.cabal";
-  });
-
-  # These packages require additional build inputs on older compilers.
-  blaze-builder = addBuildDepend super.blaze-builder super.bytestring-builder;
-  text = addBuildDepend super.text self.bytestring-builder;
-
-  # available convertible package won't build with the available
-  # bytestring and ghc-mod won't build without convertible
-  convertible = markBroken super.convertible;
-  ghc-mod = markBroken super.ghc-mod;
-
-  # Needs void on pre 7.10.x compilers.
-  conduit = addBuildDepend super.conduit self.void;
-
-  # Needs additional inputs on old compilers.
-  semigroups = addBuildDepends super.semigroups (with self; [bytestring-builder nats tagged unordered-containers transformers]);
-  lens = addBuildDepends super.lens (with self; [doctest generic-deriving nats simple-reflect]);
-  distributive = addBuildDepend (dontCheck super.distributive) self.semigroups;
-  QuickCheck = addBuildDepend super.QuickCheck self.semigroups;
-  void = addBuildDepends super.void (with self; [hashable semigroups]);
-  optparse-applicative = addBuildDepend super.optparse-applicative self.semigroups;
-  vector = addBuildDepend super.vector self.semigroups;
-
-  # Need a newer version of Cabal to interpret their build instructions.
-  cmdargs = addSetupDepend super.cmdargs self.Cabal_1_24_2_0;
-  extra = addSetupDepend super.extra self.Cabal_1_24_2_0;
-  hlint = addSetupDepend super.hlint self.Cabal_1_24_2_0;
-
-  # Haddock doesn't cope with the new markup.
-  bifunctors = dontHaddock super.bifunctors;
-
-  # Breaks a dependency cycle between QuickCheck and semigroups
-  unordered-containers = dontCheck super.unordered-containers;
-
-  # The test suite requires Cabal 1.24.x or later to compile.
-  comonad = dontCheck super.comonad;
-  semigroupoids = dontCheck super.semigroupoids;
-
-}