lish/lish.cabal

154 lines
3.1 KiB
Text
Raw Normal View History

cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.31.2.
2017-03-15 22:11:03 +00:00
--
-- see: https://github.com/sol/hpack
--
2019-09-07 12:13:04 +00:00
-- hash: b92e83b0e38dda1f7f335624325151ef2a4f95fbe2676a6e77d7bbea14b7e930
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
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
2017-03-15 22:11:03 +00:00
, containers
, data-fix
, haskeline
, parsec >=3 && <4
2017-03-15 22:11:03 +00:00
, pipes
2017-04-11 21:49:19 +00:00
, pretty
, pretty-show
2017-03-15 22:11:03 +00:00
, process
, protolude
2017-03-15 22:11:03 +00:00
, text
exposed-modules:
Data.Stack
Lish.Balanced
Lish.Core
Lish.Eval
Lish.InternalCommands
Lish.Parser
Lish.Types
other-modules:
Paths_lish
2017-03-15 22:11:03 +00:00
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
other-modules:
Paths_lish
2017-03-15 22:11:03 +00:00
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
2017-03-15 22:11:03 +00:00
, containers
, data-fix
, haskeline
, lish
, parsec >=3 && <4
2017-03-15 22:11:03 +00:00
, pipes
2017-04-11 21:49:19 +00:00
, pretty
, pretty-show
2017-03-15 22:11:03 +00:00
, process
, protolude
2017-03-15 22:11:03 +00:00
, text
default-language: Haskell2010
2017-02-18 16:57:37 +00:00
2019-09-07 12:13:04 +00:00
test-suite lish-doctest
2017-03-15 22:11:03 +00:00
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules:
Paths_lish
2017-03-15 22:11:03 +00:00
hs-source-dirs:
2019-09-07 12:13:04 +00:00
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:
2019-09-07 12:13:04 +00:00
Glob >=0.7
, QuickCheck >=2.5
, base >=4.8 && <5
2017-03-15 22:11:03 +00:00
, containers
, data-fix
2019-09-07 12:13:04 +00:00
, doctest >=0.10
2017-03-15 22:11:03 +00:00
, haskeline
, lish
, parsec >=3 && <4
2017-03-15 22:11:03 +00:00
, pipes
2017-04-11 21:49:19 +00:00
, pretty
, pretty-show
2017-03-15 22:11:03 +00:00
, process
, protolude
2017-03-15 22:11:03 +00:00
, text
default-language: Haskell2010
2017-02-18 16:57:37 +00:00
2019-09-07 12:13:04 +00:00
test-suite lish-test
2017-03-15 22:11:03 +00:00
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs:
2019-09-07 12:13:04 +00:00
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:
2019-09-07 12:13:04 +00:00
base >=4.8 && <5
2017-03-15 22:11:03 +00:00
, containers
, data-fix
, haskeline
, lish
, parsec >=3 && <4
2017-03-15 22:11:03 +00:00
, pipes
2017-04-11 21:49:19 +00:00
, pretty
, pretty-show
2017-03-15 22:11:03 +00:00
, process
, protolude
2019-09-07 12:13:04 +00:00
, tasty >=0.11
, tasty-hunit >=0.9
, tasty-smallcheck >=0.8
2017-03-15 22:11:03 +00:00
, text
2019-09-07 12:13:04 +00:00
other-modules:
Lish.Test.Parser
Paths_lish
2017-03-15 22:11:03 +00:00
default-language: Haskell2010
2017-02-18 16:57:37 +00:00
2019-09-07 12:13:04 +00:00
benchmark lish-benchmark
2017-03-15 22:11:03 +00:00
type: exitcode-stdio-1.0
main-is: Main.hs
2019-09-07 12:13:04 +00:00
other-modules:
Paths_lish
2017-03-15 22:11:03 +00:00
hs-source-dirs:
2019-09-07 12:13:04 +00:00
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
2017-03-15 22:11:03 +00:00
, containers
2019-09-07 12:13:04 +00:00
, criterion >=1.1
2017-03-15 22:11:03 +00:00
, data-fix
, haskeline
, lish
, parsec >=3 && <4
2017-03-15 22:11:03 +00:00
, pipes
2017-04-11 21:49:19 +00:00
, pretty
, pretty-show
2017-03-15 22:11:03 +00:00
, process
, protolude
, text
2017-03-15 22:11:03 +00:00
default-language: Haskell2010