about summary refs log tree commit diff
path: root/package.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'package.yaml')
-rw-r--r--package.yaml36
1 files changed, 36 insertions, 0 deletions
diff --git a/package.yaml b/package.yaml
new file mode 100644
index 0000000..deb4306
--- /dev/null
+++ b/package.yaml
@@ -0,0 +1,36 @@
+name:                lambda
+version:             0.1.0.0
+license:             BSD3
+author:              "John Hui, Stephen Edwards"
+maintainer:          "sedwards@cs.columbia.edu"
+copyright:           "2023 John Hui and Stephen Edwards"
+
+extra-source-files:
+- README.md
+
+dependencies:
+- base >= 4.7 && < 5
+
+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
+  dependencies:
+  - megaparsec
+  - containers
+  
+executables:
+  plc:
+    main: Main.hs
+    source-dirs: plc
+    dependencies:
+    - lambda