-
Notifications
You must be signed in to change notification settings - Fork 0
/
nico-lang.cabal
70 lines (66 loc) · 2.21 KB
/
nico-lang.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
name: nico-lang
version: 0.1.0.0
synopsis: Nico-lang is the programing language of Nico Yazawa
description: Please see README.md
homepage: https://github.com/aiya000/nico-lang
license: MIT
license-file: LICENSE
author: aiya000
maintainer: aiya000.develop@gmail.com
copyright: aiya000
category: Simple
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
executable nicorun
hs-source-dirs: app
main-is: Main.hs
other-modules: NicoLang.CliOptions
default-language: Haskell2010
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
build-depends: base >= 4.7 && < 5
, attoparsec
, brainhack
, cmdargs
, containers
, mtl
, nico-lang
, safe-exceptions
, text
, transformers
library
hs-source-dirs: src
build-depends: base >= 4.7 && < 5
, attoparsec
, brainhack
, cmdargs
, containers
, mtl
, safe-exceptions
, text
, transformers
default-language: Haskell2010
exposed-modules: NicoLang.Parser.Items
executable niconvert
hs-source-dirs: .
main-is: NiConverter.hs
default-language: Haskell2010
build-depends: base >= 4.7 && < 5
, text
test-suite nico-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
default-language: Haskell2010
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
other-modules: NicoLangTest.ParserTest
build-depends: base
, brainhack
, easy-file
, extra
, nico-lang
, safe-exceptions
, silently
, tasty
, tasty-hunit
, text