diff options
| author | Fuwn <[email protected]> | 2021-07-19 10:06:45 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-07-19 10:06:45 +0000 |
| commit | cd3647db7f365fd040f7e8248681bbc5f01030b8 (patch) | |
| tree | ac4451382aa7db8bd9c700daa5a0c6ee1774926b /template/template.cabal | |
| download | haskell-stack-template-master.tar.xz haskell-stack-template-master.zip | |
Diffstat (limited to 'template/template.cabal')
| -rw-r--r-- | template/template.cabal | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/template/template.cabal b/template/template.cabal new file mode 100644 index 0000000..13b0e48 --- /dev/null +++ b/template/template.cabal @@ -0,0 +1,33 @@ +cabal-version: 1.12 + +-- This file has been generated from package.yaml by hpack version 0.34.4. +-- +-- see: https://github.com/sol/hpack + +name: template +version: 0.1.0 +description: A Haskell project template for use with Stack. +build-type: Simple + +library + exposed-modules: + Template + other-modules: + Paths_template + hs-source-dirs: + ./src/lib + build-depends: + base + default-language: Haskell2010 + +executable template + main-is: Main.hs + other-modules: + Paths_template + hs-source-dirs: + ./src/exe + ghc-options: -main-is Main + build-depends: + base + , template + default-language: Haskell2010 |