Skip to content

Commit f75bd3c

Browse files
authored
Merge pull request #10 from ymeister/ghc-9.10
Build with ghc 9.10.1
2 parents f75d5f4 + 1550a4c commit f75bd3c

File tree

5 files changed

+43
-32
lines changed

5 files changed

+43
-32
lines changed

.github/workflows/haskell.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
build:
77
strategy:
88
matrix:
9-
ghc: ['8.6.5', '8.8.4', '8.10.7']
9+
ghc: ['8.6.5', '8.8.4', '8.10.7', '9.0.1', '9.2.5', '9.4.5', '9.6.1', '9.8.2', '9.10.1']
1010
os: ['ubuntu-latest', 'macos-latest']
1111
runs-on: ${{ matrix.os }}
1212

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
dist/
22
dist-newstyle/
3+
cabal.project.local

cabal.dependencies.project

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
package unix
2+
flags: +os-string

cabal.project

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
packages: .
2+
3+
import: cabal.dependencies.project

reflex-fsnotify.cabal

+36-31
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,40 @@
1-
cabal-version: >=1.10
2-
name: reflex-fsnotify
3-
version: 0.3.0.0
4-
synopsis: Reflex FRP interface for watching files
1+
cabal-version: >=1.10
2+
name: reflex-fsnotify
3+
version: 0.3.0.0
4+
license: BSD3
5+
license-file: LICENSE
6+
copyright: 2020 Obsidian Systems LLC
7+
maintainer: maintainer@obsidian.systems
8+
author: Obsidian Systems LLC
9+
tested-with:
10+
ghc ==8.10.7 || ==8.8.4 || ==8.6.5 || ==9.0.1 || ==9.2.5 || ==9.4.5 || ==9.6.1 || ==9.8.2 || ==9.10.1
11+
12+
bug-reports: https://github.com/reflex-frp/reflex-fsnotify/issues
13+
synopsis: Reflex FRP interface for watching files
514
description:
6-
Watch files and directories for changes using a functional-reactive interface!
7-
.
8-
<https://reflex-frp.org/>
9-
bug-reports: https://github.com/reflex-frp/reflex-fsnotify/issues
10-
license: BSD3
11-
license-file: LICENSE
12-
author: Obsidian Systems LLC
13-
maintainer: maintainer@obsidian.systems
14-
copyright: 2020 Obsidian Systems LLC
15-
category: System, FRP
16-
build-type: Simple
17-
extra-source-files: ChangeLog.md
18-
README.md
19-
tested-with: GHC ==8.10.7 || ==8.8.4 || ==8.6.5
15+
Watch files and directories for changes using a functional-reactive interface!
16+
.
17+
<https://reflex-frp.org/>
2018

21-
library
22-
exposed-modules: Reflex.FSNotify
23-
build-depends: base >=4.10 && <4.19
24-
, containers >= 0.6 && < 0.7
25-
, directory >= 1.3 && < 1.4
26-
, filepath >= 1.4 && < 1.5
27-
, fsnotify >= 0.4 && < 0.5
28-
, reflex >= 0.5 && < 1
29-
hs-source-dirs: src
30-
default-language: Haskell2010
31-
ghc-options: -Wall
19+
category: System, FRP
20+
build-type: Simple
21+
extra-source-files:
22+
ChangeLog.md
23+
README.md
3224

3325
source-repository head
34-
type: git
35-
location: https://github.com/reflex-frp/reflex-fsnotify
26+
type: git
27+
location: https://github.com/reflex-frp/reflex-fsnotify
28+
29+
library
30+
exposed-modules: Reflex.FSNotify
31+
hs-source-dirs: src
32+
default-language: Haskell2010
33+
ghc-options: -Wall
34+
build-depends:
35+
base >=4.10 && <4.21,
36+
containers >=0.6 && <0.8,
37+
directory >=1.3 && <1.4,
38+
filepath >=1.4 && <1.6,
39+
fsnotify >=0.4 && <0.5,
40+
reflex >=0.5 && <1

0 commit comments

Comments
 (0)