summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-common.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2016-08-29 16:55:06 +0200
committerGitHub <noreply@github.com>2016-08-29 16:55:06 +0200
commit67c57a9ce53f1f488ab0fc355a4452feeb9c5a67 (patch)
tree5b903e3170afbbb9c76b4f194d1b8de888424598 /pkgs/development/haskell-modules/configuration-common.nix
parent486c2048590899403b4cd3089f11056268c814f4 (diff)
parent70ed0fd3dec4f3fb074f995cb7d495406162216d (diff)
downloadnixlib-67c57a9ce53f1f488ab0fc355a4452feeb9c5a67.tar
nixlib-67c57a9ce53f1f488ab0fc355a4452feeb9c5a67.tar.gz
nixlib-67c57a9ce53f1f488ab0fc355a4452feeb9c5a67.tar.bz2
nixlib-67c57a9ce53f1f488ab0fc355a4452feeb9c5a67.tar.lz
nixlib-67c57a9ce53f1f488ab0fc355a4452feeb9c5a67.tar.xz
nixlib-67c57a9ce53f1f488ab0fc355a4452feeb9c5a67.tar.zst
nixlib-67c57a9ce53f1f488ab0fc355a4452feeb9c5a67.zip
Merge pull request #18016 from Profpatsch/spy-patch
haskellPackages.spy: fix for new fsnotify version
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-common.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index b84307a9dbfb..9fa66338d8ca 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -998,4 +998,7 @@ self: super: {
     '';
   });
 
+  # https://bitbucket.org/ssaasen/spy/pull-requests/3/fsnotify-dropped-system-filepath
+  spy = appendPatch super.spy ./patches/spy.patch;
+
 }