summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2014-06-20 22:34:27 -0700
committerJohn Wiegley <johnw@newartisans.com>2014-06-20 22:34:27 -0700
commit34c1d46c60e7a5ceb3913fe66c62adee177ac8f7 (patch)
tree9897e77d6286d02db976f4ace131253254aec49e /pkgs/development
parent9d36361931af2d6295904bd53dd7ee3390796c6f (diff)
downloadnixlib-34c1d46c60e7a5ceb3913fe66c62adee177ac8f7.tar
nixlib-34c1d46c60e7a5ceb3913fe66c62adee177ac8f7.tar.gz
nixlib-34c1d46c60e7a5ceb3913fe66c62adee177ac8f7.tar.bz2
nixlib-34c1d46c60e7a5ceb3913fe66c62adee177ac8f7.tar.lz
nixlib-34c1d46c60e7a5ceb3913fe66c62adee177ac8f7.tar.xz
nixlib-34c1d46c60e7a5ceb3913fe66c62adee177ac8f7.tar.zst
nixlib-34c1d46c60e7a5ceb3913fe66c62adee177ac8f7.zip
hoogle-local: Add patch based on main hoogle expression
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/haskell/hoogle/local.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/development/libraries/haskell/hoogle/local.nix b/pkgs/development/libraries/haskell/hoogle/local.nix
index 9f56d028c590..67f38f260e07 100644
--- a/pkgs/development/libraries/haskell/hoogle/local.nix
+++ b/pkgs/development/libraries/haskell/hoogle/local.nix
@@ -27,6 +27,7 @@
 , cmdargs, conduit, deepseq, filepath, haskellSrcExts, httpTypes
 , parsec, QuickCheck, random, resourcet, safe, shake, tagsoup, text
 , time, transformers, uniplate, vector, vectorAlgorithms, wai, warp
+, fetchurl
 
 , parallel, perl, wget, rehoo, haskellPlatform
 , packages ? haskellPlatform.propagatedUserEnvPkgs
@@ -51,7 +52,10 @@ cabal.mkDerivation (self: rec {
 
   # The tests will fail because of the added documentation.
   doCheck = false;
-  patches = [ ./hoogle-local.diff ];
+  patches = [ ./hoogle-local.diff
+              (fetchurl { url = "https://github.com/ndmitchell/hoogle/commit/5fc294f2b5412fda107c7700f4d833b52f26184c.diff";
+                          sha256 = "1fn52g90p2jsy87gf5rqrcg49s8hfwway5hi4v9i2rpg5mzxaq3i"; })
+            ];
 
   docPackages = packages;