hsnock/hsnock.cabal
2013-10-20 22:09:42 -04:00

39 lines
1.1 KiB
Plaintext

name : hsnock
version : 0.1.1
category : Language
license : PublicDomain
synopsis : Nock 5K interpreter.
author : Steven Dee
maintainer : mrdomino@gmail.com
homepage : https://github.com/mrdomino/hsnock/
build-type : Simple
cabal-version : >=1.8
data-files : README
source-repository head
type : git
location : https://github.com/mrdomino/hsnock.git
library
build-depends : base >=4.5
, parsec >=3.1
, readline >=1.0
exposed-modules : Language.Nock5K
, Language.Nock5K.Parse
, Language.Nock5K.Spec
, Language.Nock5K.Repl
executable hsnock
main-is : hsnock.lhs
build-depends : base >=4.5
, parsec >=3.1
, readline >=1.0
test-suite test
type : exitcode-stdio-1.0
main-is : test.hs
build-depends : base >=4.5
, parsec >=3.1
, QuickCheck >=2.6