aboutsummaryrefslogtreecommitdiffstats
path: root/hs.cabal
diff options
context:
space:
mode:
authordan <[email protected]>2021-04-11 07:58:45 +0200
committerdan <[email protected]>2021-04-11 07:58:45 +0200
commit3a40cbdf709588ae8421bb76db071387872dc4d4 (patch)
tree6edeb4d6729db457c2a7c792cfac74b9f1c839ae /hs.cabal
downloadbizexp-3a40cbdf709588ae8421bb76db071387872dc4d4.tar.gz
bizexp-3a40cbdf709588ae8421bb76db071387872dc4d4.tar.bz2
bizexp-3a40cbdf709588ae8421bb76db071387872dc4d4.zip
init
Diffstat (limited to 'hs.cabal')
-rw-r--r--hs.cabal49
1 files changed, 49 insertions, 0 deletions
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: [email protected]
+
+-- 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