mirror of
https://github.com/carp-lang/Carp.git
synced 2024-11-04 01:25:04 +03:00
65 lines
1.9 KiB
Plaintext
65 lines
1.9 KiB
Plaintext
|
name: CarpHask
|
||
|
version: 0.2.0.0
|
||
|
-- synopsis:
|
||
|
-- description:
|
||
|
homepage: https://github.com/eriksvedang/Carp
|
||
|
license: Apache-2.0
|
||
|
license-file: LICENSE
|
||
|
author: Erik Svedäng
|
||
|
maintainer: erik.svedang@gmail.com
|
||
|
copyright: Erik Svedäng
|
||
|
category: General
|
||
|
build-type: Simple
|
||
|
extra-source-files: README.md
|
||
|
cabal-version: >=1.10
|
||
|
|
||
|
library
|
||
|
hs-source-dirs: src
|
||
|
exposed-modules: Obj,
|
||
|
Parsing,
|
||
|
Infer,
|
||
|
Emit,
|
||
|
ColorText,
|
||
|
Constraints,
|
||
|
Deftype,
|
||
|
Commands,
|
||
|
Template,
|
||
|
Types,
|
||
|
Util,
|
||
|
Eval
|
||
|
|
||
|
build-depends: base >= 4.7 && < 5
|
||
|
, parsec == 3.1.*
|
||
|
, mtl
|
||
|
, containers
|
||
|
, process
|
||
|
, directory
|
||
|
, split
|
||
|
|
||
|
default-language: Haskell2010
|
||
|
|
||
|
executable CarpHask-exe
|
||
|
hs-source-dirs: app
|
||
|
main-is: Main.hs
|
||
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N
|
||
|
build-depends: base
|
||
|
, CarpHask
|
||
|
, containers
|
||
|
, process
|
||
|
default-language: Haskell2010
|
||
|
|
||
|
test-suite CarpHask-test
|
||
|
type: exitcode-stdio-1.0
|
||
|
hs-source-dirs: test
|
||
|
main-is: Spec.hs
|
||
|
build-depends: base
|
||
|
, CarpHask
|
||
|
, HUnit
|
||
|
, containers
|
||
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N
|
||
|
default-language: Haskell2010
|
||
|
|
||
|
source-repository head
|
||
|
type: git
|
||
|
location: https://github.com/eriksvedang/Carp
|