You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
149 lines
3.0 KiB
149 lines
3.0 KiB
-- This file has been generated from package.yaml by hpack version 0.17.0.
|
|
--
|
|
-- see: https://github.com/sol/hpack
|
|
|
|
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
|
|
|
|
extra-source-files:
|
|
README.md
|
|
stack.yaml
|
|
|
|
source-repository head
|
|
type: git
|
|
location: https://github.com/yogsototh/lish
|
|
|
|
library
|
|
hs-source-dirs:
|
|
src
|
|
ghc-options: -Wall -O2
|
|
build-depends:
|
|
base >= 4.8 && < 5
|
|
, containers
|
|
, data-fix
|
|
, haskeline
|
|
, parsec >= 3 && < 4
|
|
, pipes
|
|
, protolude
|
|
, pretty
|
|
, pretty-show
|
|
, process
|
|
, text
|
|
exposed-modules:
|
|
Data.Stack
|
|
Lib
|
|
Lish.Balanced
|
|
Lish.Core
|
|
Lish.Eval
|
|
Lish.InternalCommands
|
|
Lish.Parser
|
|
Lish.Types
|
|
default-language: Haskell2010
|
|
|
|
executable lish
|
|
main-is: Main.hs
|
|
hs-source-dirs:
|
|
src-exe
|
|
ghc-options: -Wall -O2 -threaded -rtsopts -with-rtsopts=-N
|
|
build-depends:
|
|
base >= 4.8 && < 5
|
|
, containers
|
|
, data-fix
|
|
, haskeline
|
|
, parsec >= 3 && < 4
|
|
, pipes
|
|
, protolude
|
|
, pretty
|
|
, pretty-show
|
|
, process
|
|
, text
|
|
, lish
|
|
default-language: Haskell2010
|
|
|
|
test-suite lish-benchmark
|
|
type: exitcode-stdio-1.0
|
|
main-is: Main.hs
|
|
hs-source-dirs:
|
|
src-benchmark
|
|
ghc-options: -Wall -O2 -threaded -rtsopts -with-rtsopts=-N
|
|
build-depends:
|
|
base >= 4.8 && < 5
|
|
, containers
|
|
, data-fix
|
|
, haskeline
|
|
, parsec >= 3 && < 4
|
|
, pipes
|
|
, protolude
|
|
, pretty
|
|
, pretty-show
|
|
, process
|
|
, text
|
|
, lish
|
|
, base >= 4.8 && < 5
|
|
, criterion >= 1.1
|
|
default-language: Haskell2010
|
|
|
|
test-suite lish-doctest
|
|
type: exitcode-stdio-1.0
|
|
main-is: Main.hs
|
|
hs-source-dirs:
|
|
src-doctest
|
|
ghc-options: -Wall -O2 -threaded -rtsopts -with-rtsopts=-N
|
|
build-depends:
|
|
base >= 4.8 && < 5
|
|
, containers
|
|
, data-fix
|
|
, haskeline
|
|
, parsec >= 3 && < 4
|
|
, pipes
|
|
, protolude
|
|
, pretty
|
|
, pretty-show
|
|
, process
|
|
, text
|
|
, lish
|
|
, base >= 4.8 && < 5
|
|
, doctest >=0.10
|
|
, Glob >= 0.7
|
|
, QuickCheck >= 2.5
|
|
default-language: Haskell2010
|
|
|
|
test-suite lish-test
|
|
type: exitcode-stdio-1.0
|
|
main-is: Main.hs
|
|
hs-source-dirs:
|
|
src-test
|
|
ghc-options: -Wall -O2 -threaded -rtsopts -with-rtsopts=-N
|
|
build-depends:
|
|
base >= 4.8 && < 5
|
|
, containers
|
|
, data-fix
|
|
, haskeline
|
|
, parsec >= 3 && < 4
|
|
, pipes
|
|
, protolude
|
|
, pretty
|
|
, pretty-show
|
|
, 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
|