summaryrefslogtreecommitdiff
path: root/package.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'package.yaml')
-rw-r--r--package.yaml38
1 files changed, 38 insertions, 0 deletions
diff --git a/package.yaml b/package.yaml
new file mode 100644
index 0000000..616f456
--- /dev/null
+++ b/package.yaml
@@ -0,0 +1,38 @@
+name: mycv
+version: 0.1.0.0
+license: MIT
+author: Chris Wells
+maintainer: chris@mathematicaster.org
+copyright: "2024 Chris Wells"
+
+dependencies:
+ - base >= 4.7 && < 5
+
+language: GHC2021
+
+ghc-options:
+ - -Wall
+ - -Wcompat
+
+library:
+ source-dirs: src
+ default-extensions:
+ - BangPatterns
+ - DeriveGeneric
+ - DeriveLift
+ - DerivingStrategies
+ - DefaultSignatures
+ - FunctionalDependencies
+ - GADTs
+ - LambdaCase
+ - MultiWayIf
+ - OverloadedStrings
+ - TypeFamilies
+ - ViewPatterns
+ dependencies:
+ - hatex
+ - lens
+ - megaparsec
+ - mtl
+ - parsec-combinators
+ - text