From 3a40cbdf709588ae8421bb76db071387872dc4d4 Mon Sep 17 00:00:00 2001 From: dan Date: Sun, 11 Apr 2021 07:58:45 +0200 Subject: init --- hs.cabal | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 hs.cabal (limited to 'hs.cabal') diff --git a/hs.cabal b/hs.cabal new file mode 100644 index 0000000..6e67e59 --- /dev/null +++ b/hs.cabal @@ -0,0 +1,49 @@ +cabal-version: 2.4 +name: hs +version: 0.1.0.0 + +-- A short (one-line) description of the package. +-- synopsis: + +-- A longer description of the package. +-- description: + +-- A URL where users can report bugs. +-- bug-reports: + +-- The license under which the package is released. +-- license: +author: dan +maintainer: me@danrh.co.uk + +-- A copyright notice. +-- copyright: +-- category: +extra-source-files: CHANGELOG.md + +library + exposed-modules: MyLib + + -- Modules included in this library but not exported. + -- other-modules: + + -- LANGUAGE extensions used by modules in this package. + -- other-extensions: + build-depends: base ^>=4.14.1.0 + hs-source-dirs: src + default-language: Haskell2010 + +executable hs + main-is: Main.hs + + -- Modules included in this executable, other than Main. + -- other-modules: + + -- LANGUAGE extensions used by modules in this package. + -- other-extensions: + build-depends: + base ^>=4.14.1.0, + hs + + hs-source-dirs: app + default-language: Haskell2010 -- cgit v1.2.3