2020-11-10 02:36:54 +03:00
|
|
|
cabal-version: 2.0
|
2020-04-24 03:48:49 +03:00
|
|
|
|
|
|
|
-- This file has been generated from package.yaml by hpack version 0.33.0.
|
|
|
|
--
|
|
|
|
-- see: https://github.com/sol/hpack
|
|
|
|
--
|
2020-05-30 16:49:06 +03:00
|
|
|
-- hash: b2b829a658e33ea328c725dea732391089d03ffd2a216d413a75d88aefa7c181
|
2020-04-24 03:48:49 +03:00
|
|
|
|
2020-11-10 02:36:54 +03:00
|
|
|
name: implicit-hie
|
|
|
|
version: 0.1.2.0
|
|
|
|
description:
|
|
|
|
Auto generate a stack or cabal multi component hie.yaml file
|
|
|
|
|
|
|
|
category: Development, Tools, Hie, HLS
|
|
|
|
synopsis: Auto generate hie-bios cradles & hie.yaml
|
|
|
|
homepage: https://github.com/Avi-D-coder/implicit-hie#readme
|
|
|
|
bug-reports: https://github.com/Avi-D-coder/implicit-hie/issues
|
|
|
|
author: Avi Dessauer
|
|
|
|
maintainer: avi.the.coder@gmail.com
|
|
|
|
copyright: 2020
|
|
|
|
license: BSD3
|
|
|
|
license-file: LICENSE
|
|
|
|
tested-with: GHC ==8.8.3
|
|
|
|
build-type: Simple
|
2020-04-24 03:48:49 +03:00
|
|
|
extra-source-files:
|
2020-11-10 02:36:54 +03:00
|
|
|
ChangeLog.md
|
|
|
|
README.md
|
|
|
|
test/benchSection
|
|
|
|
test/cabal.project
|
|
|
|
test/haskell-language-server-cabal
|
|
|
|
test/hie.yaml.cbl
|
|
|
|
test/stackHie.yaml
|
2020-04-24 03:48:49 +03:00
|
|
|
|
|
|
|
source-repository head
|
2020-11-10 02:36:54 +03:00
|
|
|
type: git
|
2020-04-24 03:48:49 +03:00
|
|
|
location: https://github.com/Avi-D-coder/implicit-hie
|
|
|
|
|
|
|
|
library
|
|
|
|
exposed-modules:
|
2020-11-10 02:36:54 +03:00
|
|
|
Hie.Cabal.Parser
|
|
|
|
Hie.Locate
|
|
|
|
Hie.Yaml
|
|
|
|
|
|
|
|
other-modules: Paths_implicit_hie
|
|
|
|
autogen-modules: Paths_implicit_hie
|
|
|
|
hs-source-dirs: src
|
|
|
|
ghc-options:
|
|
|
|
-Wall -Wincomplete-record-updates -Wincomplete-uni-patterns
|
|
|
|
-fno-warn-unused-imports -fno-warn-unused-binds
|
|
|
|
-fno-warn-name-shadowing -fwarn-redundant-constraints
|
2020-11-10 02:56:25 +03:00
|
|
|
-fwrite-ide-info -hiedir=.hie
|
2020-11-10 02:36:54 +03:00
|
|
|
|
2020-04-24 03:48:49 +03:00
|
|
|
build-depends:
|
2020-11-10 02:36:54 +03:00
|
|
|
attoparsec >=0.13
|
|
|
|
, base >=4.7 && <5
|
|
|
|
, directory >=1.3
|
|
|
|
, filepath >=1.4
|
|
|
|
, filepattern >=0.1
|
|
|
|
, text >=1.2
|
|
|
|
, transformers >=0.5
|
|
|
|
, yaml >=0.5
|
|
|
|
|
2020-04-24 03:48:49 +03:00
|
|
|
default-language: Haskell2010
|
|
|
|
|
2020-05-01 03:59:13 +03:00
|
|
|
executable gen-hie
|
2020-11-10 02:36:54 +03:00
|
|
|
main-is: Main.hs
|
|
|
|
other-modules: Paths_implicit_hie
|
|
|
|
autogen-modules: Paths_implicit_hie
|
|
|
|
hs-source-dirs: app
|
|
|
|
ghc-options:
|
|
|
|
-Wall -Wincomplete-record-updates -Wincomplete-uni-patterns
|
|
|
|
-fno-warn-unused-imports -fno-warn-unused-binds
|
|
|
|
-fno-warn-name-shadowing -fwarn-redundant-constraints -threaded
|
2020-11-10 02:56:25 +03:00
|
|
|
-rtsopts -with-rtsopts=-N -fwrite-ide-info -hiedir=.hie
|
2020-11-10 02:36:54 +03:00
|
|
|
|
2020-04-24 03:48:49 +03:00
|
|
|
build-depends:
|
|
|
|
attoparsec
|
2020-11-10 02:36:54 +03:00
|
|
|
, base >=4.7 && <5
|
2020-05-01 03:48:32 +03:00
|
|
|
, directory
|
|
|
|
, filepath
|
2020-05-12 06:04:09 +03:00
|
|
|
, filepattern
|
2020-04-24 03:48:49 +03:00
|
|
|
, implicit-hie
|
2020-04-25 07:28:20 +03:00
|
|
|
, text
|
2020-05-12 06:04:09 +03:00
|
|
|
, transformers
|
2020-05-01 02:35:00 +03:00
|
|
|
, yaml
|
2020-11-10 02:36:54 +03:00
|
|
|
|
2020-04-24 03:48:49 +03:00
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
|
|
test-suite implicit-hie-test
|
2020-11-10 02:36:54 +03:00
|
|
|
type: exitcode-stdio-1.0
|
|
|
|
main-is: Spec.hs
|
|
|
|
other-modules: Paths_implicit_hie
|
|
|
|
autogen-modules: Paths_implicit_hie
|
|
|
|
hs-source-dirs: test
|
|
|
|
ghc-options:
|
|
|
|
-Wall -Wincomplete-record-updates -Wincomplete-uni-patterns
|
|
|
|
-fno-warn-unused-imports -fno-warn-unused-binds
|
|
|
|
-fno-warn-name-shadowing -fwarn-redundant-constraints -threaded
|
2020-11-10 02:56:25 +03:00
|
|
|
-rtsopts -with-rtsopts=-N -fwrite-ide-info -hiedir=.hie
|
2020-11-10 02:36:54 +03:00
|
|
|
|
2020-04-24 03:48:49 +03:00
|
|
|
build-depends:
|
|
|
|
attoparsec
|
2020-11-10 02:36:54 +03:00
|
|
|
, base >=4.7 && <5
|
2020-05-09 09:10:48 +03:00
|
|
|
, directory
|
|
|
|
, filepath
|
2020-05-12 06:04:09 +03:00
|
|
|
, filepattern
|
2020-04-25 07:28:20 +03:00
|
|
|
, hspec
|
|
|
|
, hspec-attoparsec
|
2020-04-24 03:48:49 +03:00
|
|
|
, implicit-hie
|
2020-04-25 07:28:20 +03:00
|
|
|
, text
|
2020-05-12 06:04:09 +03:00
|
|
|
, transformers
|
2020-05-01 02:35:00 +03:00
|
|
|
, yaml
|
2020-11-10 02:36:54 +03:00
|
|
|
|
2020-04-24 03:48:49 +03:00
|
|
|
default-language: Haskell2010
|