about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2012-11-08 15:03:39 +0100
committerPeter Simons <simons@cryp.to>2012-11-08 15:04:59 +0100
commit39e5c66df2daf1e3ef79b11dd2b04f84a5111511 (patch)
treef362f799dacd8dbf41f621072fd77dd3379a815d
parent24d9e59cbb9b7b5c148c07710824cab9450fb15c (diff)
downloadnixlib-39e5c66df2daf1e3ef79b11dd2b04f84a5111511.tar
nixlib-39e5c66df2daf1e3ef79b11dd2b04f84a5111511.tar.gz
nixlib-39e5c66df2daf1e3ef79b11dd2b04f84a5111511.tar.bz2
nixlib-39e5c66df2daf1e3ef79b11dd2b04f84a5111511.tar.lz
nixlib-39e5c66df2daf1e3ef79b11dd2b04f84a5111511.tar.xz
nixlib-39e5c66df2daf1e3ef79b11dd2b04f84a5111511.tar.zst
nixlib-39e5c66df2daf1e3ef79b11dd2b04f84a5111511.zip
haskell-fsnotify: patch to support recent versions of hinotify
-rw-r--r--pkgs/development/libraries/haskell/fsnotify/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/fsnotify/default.nix b/pkgs/development/libraries/haskell/fsnotify/default.nix
index a27ca405c7b1..e8a8f74fbbeb 100644
--- a/pkgs/development/libraries/haskell/fsnotify/default.nix
+++ b/pkgs/development/libraries/haskell/fsnotify/default.nix
@@ -5,6 +5,9 @@ cabal.mkDerivation (self: {
   version = "0.0.2";
   sha256 = "14pvyky3wg1k1lrv41rymi4mihvdpkx8vfv43wa0z6g4a6456ayz";
   buildDepends = [ hinotify systemFileio systemFilepath text time ];
+  patchPhase = ''
+    sed -i -e 's@hinotify == 0.3.2@hinotify >= 0.3.2@g' fsnotify.cabal
+  '';
   meta = {
     description = "Cross platform library for file creation, modification, and deletion notification";
     license = self.stdenv.lib.licenses.bsd3;