summaryrefslogtreecommitdiff
path: root/comp/lucas-standen-NEA/writeup2/examples/fib/haskell/haskell.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'comp/lucas-standen-NEA/writeup2/examples/fib/haskell/haskell.cabal')
-rw-r--r--comp/lucas-standen-NEA/writeup2/examples/fib/haskell/haskell.cabal34
1 files changed, 34 insertions, 0 deletions
diff --git a/comp/lucas-standen-NEA/writeup2/examples/fib/haskell/haskell.cabal b/comp/lucas-standen-NEA/writeup2/examples/fib/haskell/haskell.cabal
new file mode 100644
index 0000000..e4262c3
--- /dev/null
+++ b/comp/lucas-standen-NEA/writeup2/examples/fib/haskell/haskell.cabal
@@ -0,0 +1,34 @@
+cabal-version: 2.4
+name: haskell
+version: 0.1.0.0
+
+-- A short (one-line) description of the package.
+-- synopsis:
+
+-- A longer description of the package.
+-- description:
+
+-- A URL where users can report bugs.
+-- bug-reports:
+
+-- The license under which the package is released.
+-- license:
+author: thing 1
+maintainer: thing1@seacrossedlovers.xyz
+
+-- A copyright notice.
+-- copyright:
+-- category:
+extra-source-files: CHANGELOG.md
+
+executable haskell
+ main-is: Main.hs
+
+ -- Modules included in this executable, other than Main.
+ -- other-modules:
+
+ -- LANGUAGE extensions used by modules in this package.
+ -- other-extensions:
+ build-depends: base ^>=4.16.4.0
+ hs-source-dirs: app
+ default-language: Haskell2010