aboutsummaryrefslogtreecommitdiffhomepage
path: root/package.yaml
diff options
context:
space:
mode:
authorMarvin Borner2023-10-03 16:29:50 +0200
committerMarvin Borner2023-10-03 16:29:50 +0200
commit9825d231a90e0763218bb956f7894f24ab4836db (patch)
tree0e27fc8d41e8976ea6e738f09b7fe5de00fa987e /package.yaml
Initial commit
Diffstat (limited to 'package.yaml')
-rw-r--r--package.yaml62
1 files changed, 62 insertions, 0 deletions
diff --git a/package.yaml b/package.yaml
new file mode 100644
index 0000000..6d1c483
--- /dev/null
+++ b/package.yaml
@@ -0,0 +1,62 @@
+name: jotter
+version: 0.1.0.0
+github: "marvinborner/jotter"
+license: MIT
+author: "Marvin Borner"
+maintainer: "git@marvinborner.de"
+copyright: "2023 Marvin Borner"
+
+extra-source-files:
+- readme.md
+
+# Metadata used when publishing your package
+# synopsis: Short description of your package
+# category: Web
+
+# To avoid duplicated efforts in documentation and dealing with the
+# complications of embedding Haddock markup inside cabal files, it is
+# common to point users to the README.md file.
+description: Please see the README on GitHub at <https://github.com/githubuser/jotter#readme>
+
+dependencies:
+- base >= 4.7 && < 5
+- containers
+- async
+
+ghc-options:
+- -Wall
+- -Wcompat
+- -Widentities
+- -Wincomplete-record-updates
+- -Wincomplete-uni-patterns
+- -Wmissing-export-lists
+- -Wmissing-home-modules
+- -Wpartial-fields
+- -Wredundant-constraints
+
+library:
+ source-dirs: src
+
+executables:
+ jotter:
+ main: Main.hs
+ source-dirs: app
+ ghc-options:
+ - -threaded
+ - -rtsopts
+ - -with-rtsopts=-N
+ - -O3
+ - -fllvm
+ dependencies:
+ - jotter
+
+tests:
+ jotter-test:
+ main: Spec.hs
+ source-dirs: test
+ ghc-options:
+ - -threaded
+ - -rtsopts
+ - -with-rtsopts=-N
+ dependencies:
+ - jotter