haskell-ide-engine/install/hie-install.cabal
jneira b46a531454 Several improvements to install script
* Remove unused imports
* Pass number of jobs and verbosity shake args to build tools
* Use custom cabal.project-${ghcVersion} if exists
* Add comments with the possible resolvers to shake.yaml
2020-02-24 12:17:24 +01:00

41 lines
1.2 KiB
Plaintext

name: hie-install
version: 0.8.1.0
synopsis: Install the haskell-ide-engine
license: BSD3
author: Many, TBD when we release
maintainer: samuel.pilz@posteo.net
copyright: 2019
build-type: Simple
cabal-version: >=2.0
library
hs-source-dirs: src
exposed-modules: HieInstall
other-modules: BuildSystem
, Stack
, Version
, Cabal
, Print
, Env
, Help
build-depends: base >= 4.9 && < 5
, shake >= 0.16.4 && < 0.19
, directory
, filepath
, extra
, text
default-extensions: LambdaCase
, TupleSections
, RecordWildCards
default-language: Haskell2010
if flag(run-from-stack)
cpp-options: -DRUN_FROM_STACK
else
build-depends: cabal-install-parsers
flag run-from-stack
description: Inform the application that it is run from stack
default: False
manual: True