about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorVaibhav Sagar <vaibhav.sagar@obsidian.systems>2019-08-29 18:21:46 -0400
committerPeter Simons <simons@cryp.to>2019-09-03 09:23:29 +0200
commite5d3c59fc449dcb7c040e3f9c32e9bb1d4060149 (patch)
treee1144bb6fa3c22ff3df9cf42aa713d91f4f06542 /pkgs/development/haskell-modules
parent4d779b0e8ed7d2925c0a593a4e6071f7c6f66fc8 (diff)
downloadnixlib-e5d3c59fc449dcb7c040e3f9c32e9bb1d4060149.tar
nixlib-e5d3c59fc449dcb7c040e3f9c32e9bb1d4060149.tar.gz
nixlib-e5d3c59fc449dcb7c040e3f9c32e9bb1d4060149.tar.bz2
nixlib-e5d3c59fc449dcb7c040e3f9c32e9bb1d4060149.tar.lz
nixlib-e5d3c59fc449dcb7c040e3f9c32e9bb1d4060149.tar.xz
nixlib-e5d3c59fc449dcb7c040e3f9c32e9bb1d4060149.tar.zst
nixlib-e5d3c59fc449dcb7c040e3f9c32e9bb1d4060149.zip
haskell.packages.ghc881.haskell-src-meta: fix build
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix4
1 files changed, 4 insertions, 0 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 cdc963386f83..711bc3081147 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
@@ -175,4 +175,8 @@ self: super: {
   });
   system-fileio = doJailbreak super.system-fileio;
   yaml = self.yaml_0_11_1_2;
+  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.2.patch";
+    sha256 = "146im1amywyl29kcldvgrxpwj22lrpzxysl7vc8rmn3hrq130dyc";
+  });
 }