summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2019-09-18 15:13:27 +0000
committerPeter Simons <simons@cryp.to>2019-09-22 13:43:09 +0200
commit666dac71ac18e313912525733a74d7c995dcdec6 (patch)
tree8940b4b789d126cf619f1302bee89dea7c48ec9a /pkgs/development/haskell-modules
parent7832aefa8064aeca26c0a2249897a785067d6aad (diff)
downloadnixpkgs-666dac71ac18e313912525733a74d7c995dcdec6.tar
nixpkgs-666dac71ac18e313912525733a74d7c995dcdec6.tar.gz
nixpkgs-666dac71ac18e313912525733a74d7c995dcdec6.tar.bz2
nixpkgs-666dac71ac18e313912525733a74d7c995dcdec6.tar.lz
nixpkgs-666dac71ac18e313912525733a74d7c995dcdec6.tar.xz
nixpkgs-666dac71ac18e313912525733a74d7c995dcdec6.tar.zst
nixpkgs-666dac71ac18e313912525733a74d7c995dcdec6.zip
haskell-string-qq: patch the build to succeed when compiling with ghc-8.8.x
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix10
1 files changed, 10 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 799f8cc37b4..143e7259d58 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
@@ -170,4 +170,14 @@ self: super: {
   # 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";
+    };
+  };
+
 }