summary refs log tree commit diff
diff options
context:
space:
mode:
authorKosyrev Serge <_deepfire@feelingofgreen.ru>2016-05-02 18:58:15 +0300
committerKosyrev Serge <_deepfire@feelingofgreen.ru>2016-05-04 13:31:28 +0300
commitc9553d7b6d46a1c5e7a0d329b5a0869c566bad53 (patch)
treecbd4f47721c4ac684d78e00d6a54ffd6bd528209
parent81f12377e448c9d5a5c0f5351e6e9fadce9c9295 (diff)
downloadnixpkgs-c9553d7b6d46a1c5e7a0d329b5a0869c566bad53.tar
nixpkgs-c9553d7b6d46a1c5e7a0d329b5a0869c566bad53.tar.gz
nixpkgs-c9553d7b6d46a1c5e7a0d329b5a0869c566bad53.tar.bz2
nixpkgs-c9553d7b6d46a1c5e7a0d329b5a0869c566bad53.tar.lz
nixpkgs-c9553d7b6d46a1c5e7a0d329b5a0869c566bad53.tar.xz
nixpkgs-c9553d7b6d46a1c5e7a0d329b5a0869c566bad53.tar.zst
nixpkgs-c9553d7b6d46a1c5e7a0d329b5a0869c566bad53.zip
ghc8 | config: th-reify-many -> 0.1.4.1
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix
index 4f25f42cf3f..161d1647bda 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix
@@ -140,4 +140,13 @@ self: super: {
     };
   }));
 
+  # The essential part is released in 0.1.4.1 upstream (needs hackage import)
+  th-reify-many          = doJailbreak (pkgs.haskell.lib.overrideCabal super.th-reify-many (oldAttrs: {
+    src = pkgs.fetchgit {
+            url    = https://github.com/mgsloan/th-reify-many.git;
+            rev    = "699eed232c2ccaf9fb109f131e80ed8d654d6f08";
+            sha256 = "001fvpq039l9wj9v8id7kfjwmp4acf53zr4z6sppdvrv6npzz5yb";
+    };
+  }));
+
 }