summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2019-09-24 18:14:56 +0200
committerPeter Simons <simons@cryp.to>2019-09-25 15:29:46 +0200
commitab64a69b544d16c7487e3858f8da61e2010aa8b0 (patch)
tree5c78a153497b15e302c6d03d13846ec35160880c /pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
parent4485fc595de2b72fb5bd46d0761beb661b709220 (diff)
downloadnixpkgs-ab64a69b544d16c7487e3858f8da61e2010aa8b0.tar
nixpkgs-ab64a69b544d16c7487e3858f8da61e2010aa8b0.tar.gz
nixpkgs-ab64a69b544d16c7487e3858f8da61e2010aa8b0.tar.bz2
nixpkgs-ab64a69b544d16c7487e3858f8da61e2010aa8b0.tar.lz
nixpkgs-ab64a69b544d16c7487e3858f8da61e2010aa8b0.tar.xz
nixpkgs-ab64a69b544d16c7487e3858f8da61e2010aa8b0.tar.zst
nixpkgs-ab64a69b544d16c7487e3858f8da61e2010aa8b0.zip
haskell-src: mark the package broken with ghc-8.8.x
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
index 8e036e19584..8b312f977b1 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
@@ -100,8 +100,6 @@ self: super: {
     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";
@@ -150,6 +148,11 @@ self: super: {
   # Upstream ships a broken Setup.hs file.
   csv = overrideCabal super.csv (drv: { prePatch = "rm Setup.hs"; });
 
+  # mark broken packages
+  easytest = markBroken super.easytest;
+  easytest_0_3 = markBroken super.easytest_0_3;
+  haskell-src = markBrokenVersion "1.0.3.0" super.haskell-src;
+
   # use latest version to fix the build
   hackage-db = self.hackage-db_2_1_0;
   lens = self.lens_4_18_1;