File tree 3 files changed +14
-4
lines changed
3 files changed +14
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Revision history for reflex-fsnotify
2
2
3
+ ## 0.3.0.0
4
+
5
+ * Require fsnotify >= 0.4, which has a breaking API change
6
+ * Support reflex-0.9
7
+
3
8
## 0.2.1.3
4
9
5
10
Support GHC 8.10
Original file line number Diff line number Diff line change 1
1
cabal-version : >= 1.10
2
2
name : reflex-fsnotify
3
- version : 0.2.1.3
3
+ version : 0.3.0.0
4
4
synopsis : Reflex FRP interface for watching files
5
5
description :
6
6
Watch files and directories for changes using a functional-reactive interface!
@@ -24,7 +24,7 @@ library
24
24
, containers >= 0.6 && < 0.7
25
25
, directory >= 1.3 && < 1.4
26
26
, filepath >= 1.4 && < 1.5
27
- , fsnotify >= 0.3 && < 0.4
27
+ , fsnotify >= 0.4 && < 0.5
28
28
, reflex >= 0.5 && < 1
29
29
hs-source-dirs : src
30
30
default-language : Haskell2010
Original file line number Diff line number Diff line change 1
- { p ? import ./reflex-platform { }
1
+ { p ? import ./reflex-platform { __useNewerCompiler = true ; }
2
2
} :
3
3
let
4
4
inherit ( p . nixpkgs ) lib ;
5
- in p . ghc . callCabal2nix "reflex-fsnotify" ./. { }
5
+ ghc = p . ghc . override {
6
+ overrides = self : super : {
7
+ fsnotify = p . nixpkgs . haskell . lib . dontCheck ( self . callHackage "fsnotify" "0.4.1.0" { } ) ;
8
+ } ;
9
+ } ;
10
+ in ghc . callCabal2nix "reflex-fsnotify" ./. { }
You can’t perform that action at this time.
0 commit comments