-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathword-compat.cabal
51 lines (41 loc) · 1.39 KB
/
word-compat.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
cabal-version: 2.4
name: word-compat
version: 0.0.6
-- A short (one-line) description of the package.
synopsis: Compatibility shim for the Int/Word internal change in GHC 9.2
-- A longer description of the package.
description: This package offers a workaround for the breaking change in Word/Int. Import GHC.Word.Compat in place of GHC.Word to take effect.
-- A URL where users can report bugs.
-- bug-reports:
-- The license under which the package is released.
license: BSD-3-Clause
author: Fumiaki Kinoshita
maintainer: [email protected]
-- A copyright notice.
copyright: Copyright (c) 2022 Fumiaki Kinoshita
category: Data
extra-source-files: CHANGELOG.md
source-repository head
type: git
location: [email protected]:fumieval/word-compat
library
exposed-modules:
GHC.Word.Compat
GHC.Int.Compat
GHC.Prim.Compat
-- Modules included in this executable, other than Main.
-- other-modules:
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
build-depends: base >= 4.9 && <5, ghc-prim
hs-source-dirs: src
ghc-options: -Wall -Wcompat
default-language: Haskell2010
test-suite test
main-is: test.hs
hs-source-dirs: tests
type: exitcode-stdio-1.0
ghc-options: -Wall -Wcompat
build-depends:
base, word-compat
default-language: Haskell2010