aboutsummaryrefslogtreecommitdiff
path: root/Haskell-book/16/func/package.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'Haskell-book/16/func/package.yaml')
-rw-r--r--Haskell-book/16/func/package.yaml34
1 files changed, 34 insertions, 0 deletions
diff --git a/Haskell-book/16/func/package.yaml b/Haskell-book/16/func/package.yaml
new file mode 100644
index 0000000..9595fb3
--- /dev/null
+++ b/Haskell-book/16/func/package.yaml
@@ -0,0 +1,34 @@
+name: func
+version: 0.1.0.0
+author: "Eugen Wissner"
+maintainer: "belka@caraus.de"
+copyright: "2018 Eugen Wissner"
+
+dependencies:
+- base >= 4.7 && < 5
+- QuickCheck
+
+library:
+ source-dirs: src
+
+# executables:
+# func-exe:
+# main: Main.hs
+# source-dirs: app
+# ghc-options:
+# - -threaded
+# - -rtsopts
+# - -with-rtsopts=-N
+# dependencies:
+# - func
+
+tests:
+ func-test:
+ main: Spec.hs
+ source-dirs: test
+ ghc-options:
+ - -threaded
+ - -rtsopts
+ - -with-rtsopts=-N
+ dependencies:
+ - func