summaryrefslogtreecommitdiff
path: root/package.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'package.yaml')
-rw-r--r--package.yaml52
1 files changed, 52 insertions, 0 deletions
diff --git a/package.yaml b/package.yaml
new file mode 100644
index 0000000..03cb634
--- /dev/null
+++ b/package.yaml
@@ -0,0 +1,52 @@
1name: new
2version: 0.1.0.0
3github: "afcady/new"
4license: AllRightsReserved
5author: "Andrew Cady"
6maintainer: "d@jerkface.net"
7copyright: "2018 Andrew Cady"
8
9extra-source-files:
10- README.md
11- ChangeLog.md
12
13# Metadata used when publishing your package
14# synopsis: Short description of your package
15# category: Web
16
17# To avoid duplicated efforts in documentation and dealing with the
18# complications of embedding Haddock markup inside cabal files, it is
19# common to point users to the README.md file.
20
21description: Please see the README on Github at <https://github.com/afcady/new#readme>
22
23dependencies:
24- base >= 4.7 && < 5
25- rebase
26- lens
27
28library:
29 source-dirs: src
30
31executables:
32 new-exe:
33 main: Main.hs
34 source-dirs: app
35 ghc-options:
36 - -threaded
37 - -rtsopts
38 - -with-rtsopts=-N
39 - -W -Wall
40 dependencies:
41 - new
42
43# tests:
44# new-test:
45# main: Spec.hs
46# source-dirs: test
47# ghc-options:
48# - -threaded
49# - -rtsopts
50# - -with-rtsopts=-N
51# dependencies:
52# - new