packages feed

qux-0.1.0.0: qux.cabal

name:           qux
version:        0.1.0.0

author:         Henry J. Wylde
maintainer:     public@hjwylde.com
homepage:       https://github.com/qux-lang/qux

synopsis:       Command line binary for working with the Qux language
-- description:

license:        BSD3
license-file:   LICENSE

cabal-version:  >= 1.10
category:       Qux
build-type:     Simple

executable qux
    main-is: Main.hs
    hs-source-dirs: main/ src/
    other-modules:
        Qux.Commands,
        Qux.Commands.Build,
        Qux.Commands.Check,
        Qux.Commands.Print,
        Qux.Commands.Run

    default-language: Haskell2010
    build-depends:
        base >= 4.8 && < 5,
        language-qux == 0.1.*,
        mtl == 2.*,
        optparse-applicative == 0.11.*