-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsed.cabal
More file actions
55 lines (51 loc) · 1.84 KB
/
Copy pathsed.cabal
File metadata and controls
55 lines (51 loc) · 1.84 KB
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
-- Initial sed.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: sed
version: 0.0.1.15
synopsis: An implementation of sed in Haskell
-- description:
homepage: https://github.com/connermcd/sed
license: GPL-3
license-file: LICENSE
author: Conner McDaniel
maintainer: connermcd@gmail.com
-- copyright:
category: Text
build-type: Simple
extra-source-files: README.markdown
cabal-version: >=1.10
executable sed
main-is: Main.hs
ghc-options: -Wall
build-depends: base >=4.7 && <4.8,
text >=1.2 && <1.3,
mtl >=2.2 && <2.3,
ListZipper >=1.2 && <1.3,
regex-compat >=0.95 && <0.96,
parsec >=3.1 && <3.2
hs-source-dirs: src
default-language: Haskell2010
library
exposed-modules: Sed, Parser
ghc-options: -Wall
build-depends: base >=4.7 && <4.8,
text >=1.2 && <1.3,
mtl >=2.2 && <2.3,
ListZipper >=1.2 && <1.3,
regex-compat >=0.95 && <0.96,
parsec >=3.1 && <3.2
hs-source-dirs: src
default-language: Haskell2010
test-suite test
type: exitcode-stdio-1.0
ghc-options: -Wall
main-is: Main.hs
build-depends: sed,
base >=4.7 && <4.8,
text >=1.2 && <1.3,
process >=1.2 && <1.3,
HUnit >=1.2 && <1.3,
test-framework >=0.8 && <0.9,
test-framework-hunit >=0.3 && <0.4
hs-source-dirs: test
default-language: Haskell2010