-
Notifications
You must be signed in to change notification settings - Fork 22
/
pointfree.cabal
83 lines (69 loc) · 2.25 KB
/
pointfree.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
Cabal-Version: >= 1.10
Name: pointfree
Version: 1.1.1.12
Category: Tool
Synopsis: Tool for refactoring expressions into pointfree form
Description:
The pointfree tool is a standalone command-line version of the pl
plugin for lambdabot.
Author: Thomas Jäger
Maintainer: Ben Millwood <thebenmachine+git@gmail.com>
License: OtherLicense
License-file: LICENSE
Extra-source-files: ChangeLog README test/Test.hs
Build-type: Simple
-- matches the list in .github/workflows/ci.yml
Tested-with: GHC == 9.4.8, GHC == 9.6.6, GHC == 9.8.2, GHC == 9.10.1
Source-repository head
type: git
location: git://github.com/bmillwood/pointfree.git
Library
Exposed-modules: Pointfree
Default-language: Haskell2010
Build-depends: base >= 4.5 && < 4.21,
array >= 0.3 && < 0.6,
containers >= 0.4 && < 0.8,
haskell-src-exts >= 1.20 && < 1.24,
transformers < 0.7
Other-modules: Plugin.Pl.Common
Plugin.Pl.Parser
Plugin.Pl.PrettyPrinter
Plugin.Pl.Optimize
Plugin.Pl.Rules
Plugin.Pl.Transform
GHC-options: -W
Executable pointfree
Main-is: Main.hs
Default-language: Haskell2010
GHC-options: -W
Build-depends: base >= 4.5 && < 4.21,
array >= 0.3 && < 0.6,
containers >= 0.4 && < 0.8,
haskell-src-exts >= 1.20 && < 1.24,
transformers < 0.7
Other-modules: Plugin.Pl.Common
Plugin.Pl.Parser
Plugin.Pl.PrettyPrinter
Plugin.Pl.Optimize
Plugin.Pl.Rules
Plugin.Pl.Transform
Test-suite tests
Type: exitcode-stdio-1.0
Main-is: Test.hs
Other-modules: Plugin.Pl.Common
Plugin.Pl.Parser
Plugin.Pl.PrettyPrinter
Plugin.Pl.Optimize
Plugin.Pl.Rules
Plugin.Pl.Transform
Build-depends:
base >= 4.5 && < 4.21,
array >= 0.3 && < 0.6,
containers >= 0.4 && < 0.8,
haskell-src-exts >= 1.20 && < 1.24,
HUnit >= 1.6 && < 1.7,
QuickCheck >= 2.11 && < 2.16,
transformers < 0.7
Default-language: Haskell2010
GHC-Options: -W
Hs-source-dirs: . test