-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScone.cabal
41 lines (32 loc) · 876 Bytes
/
Scone.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
cabal-version: 3.4
name: Scone
version: 0.1.0.0
license: MIT
license-file: LICENSE
author: Joshua Niemelä
maintainer: [email protected]
category: Language
build-type: Simple
extra-doc-files:
README.md
TODO.md
source-repository head
type: git
location: https://github.com/joshniemela/PlaceholderLisp
common warnings
ghc-options: -Wall
executable Scone
import: warnings
main-is: Main.hs
build-depends: base
,text
,array
,megaparsec
,mtl
,containers
,directory
,optparse-applicative
hs-source-dirs: src
default-extensions:
OverloadedStrings
default-language: Haskell2010