lish/lish.cabal

149 lines
3 KiB
Text
Raw Normal View History

2017-03-15 22:11:03 +00:00
-- This file has been generated from package.yaml by hpack version 0.17.0.
--
-- see: https://github.com/sol/hpack
2017-02-18 16:57:37 +00:00
2017-03-15 22:11:03 +00:00
name: lish
version: 0.1.0.0
synopsis: LISP flavoured shell
description: See README.md at <https://github.com/yogsototh/lish#readme>
category: Development
homepage: https://github.com/yogsototh/lish#readme
bug-reports: https://github.com/yogsototh/lish/issues
maintainer: Yann Esposito <yann.esposito@gmail.com>
license: PublicDomain
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
2017-02-18 16:57:37 +00:00
extra-source-files:
2017-03-15 22:11:03 +00:00
README.md
stack.yaml
2017-02-18 16:57:37 +00:00
source-repository head
2017-03-15 22:11:03 +00:00
type: git
2017-02-18 16:57:37 +00:00
location: https://github.com/yogsototh/lish
library
2017-03-15 22:11:03 +00:00
hs-source-dirs:
src
2017-04-06 08:21:53 +00:00
ghc-options: -Wall -O2
2017-03-15 22:11:03 +00:00
build-depends:
base >= 4.8 && < 5
, containers
, data-fix
, haskeline
, parsec >= 3 && < 4
, pipes
, protolude
2017-04-11 21:49:19 +00:00
, pretty
, pretty-show
2017-03-15 22:11:03 +00:00
, process
, text
exposed-modules:
Data.Stack
Lib
Lish.Balanced
Lish.Core
Lish.Eval
Lish.InternalCommands
Lish.Parser
Lish.Types
default-language: Haskell2010
2017-02-18 16:57:37 +00:00
2017-03-15 22:11:03 +00:00
executable lish
main-is: Main.hs
hs-source-dirs:
src-exe
2017-04-06 08:21:53 +00:00
ghc-options: -Wall -O2 -threaded -rtsopts -with-rtsopts=-N
2017-03-15 22:11:03 +00:00
build-depends:
base >= 4.8 && < 5
, containers
, data-fix
, haskeline
, parsec >= 3 && < 4
, pipes
, protolude
2017-04-11 21:49:19 +00:00
, pretty
, pretty-show
2017-03-15 22:11:03 +00:00
, process
, text
, lish
default-language: Haskell2010
2017-02-18 16:57:37 +00:00
2017-03-15 22:11:03 +00:00
test-suite lish-benchmark
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs:
src-benchmark
2017-04-06 08:21:53 +00:00
ghc-options: -Wall -O2 -threaded -rtsopts -with-rtsopts=-N
2017-03-15 22:11:03 +00:00
build-depends:
base >= 4.8 && < 5
, containers
, data-fix
, haskeline
, parsec >= 3 && < 4
, pipes
, protolude
2017-04-11 21:49:19 +00:00
, pretty
, pretty-show
2017-03-15 22:11:03 +00:00
, process
, text
, lish
, base >= 4.8 && < 5
, criterion >= 1.1
default-language: Haskell2010
2017-02-18 16:57:37 +00:00
test-suite lish-doctest
2017-03-15 22:11:03 +00:00
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs:
src-doctest
2017-04-06 08:21:53 +00:00
ghc-options: -Wall -O2 -threaded -rtsopts -with-rtsopts=-N
2017-03-15 22:11:03 +00:00
build-depends:
base >= 4.8 && < 5
, containers
, data-fix
, haskeline
, parsec >= 3 && < 4
, pipes
, protolude
2017-04-11 21:49:19 +00:00
, pretty
, pretty-show
2017-03-15 22:11:03 +00:00
, process
, text
, lish
, base >= 4.8 && < 5
, doctest >=0.10
, Glob >= 0.7
, QuickCheck >= 2.5
default-language: Haskell2010
2017-02-18 16:57:37 +00:00
2017-03-15 22:11:03 +00:00
test-suite lish-test
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs:
src-test
2017-04-06 08:21:53 +00:00
ghc-options: -Wall -O2 -threaded -rtsopts -with-rtsopts=-N
2017-03-15 22:11:03 +00:00
build-depends:
base >= 4.8 && < 5
, containers
, data-fix
, haskeline
, parsec >= 3 && < 4
, pipes
, protolude
2017-04-11 21:49:19 +00:00
, pretty
, pretty-show
2017-03-15 22:11:03 +00:00
, process
, text
, lish
, base >= 4.8 && < 5
, tasty >= 0.11
, tasty-hunit >= 0.9
, tasty-smallcheck >= 0.8
, protolude
, data-fix
other-modules:
Lish.Test.Parser
default-language: Haskell2010