summaryrefslogtreecommitdiff
path: root/comp/lucas-standen-NEA/writeup2/examples/fib/haskell/haskell.cabal
diff options
context:
space:
mode:
authorthing 1 <thing1@seacrossedlovers.xyz>2024-12-16 13:36:15 +0000
committerthing 1 <thing1@seacrossedlovers.xyz>2024-12-16 13:36:15 +0000
commit857de9681685bc5cfd3907ccfe87d8a9b160b968 (patch)
treea2e88494c3931fc4946f6fc4fda1d5f4d9f63247 /comp/lucas-standen-NEA/writeup2/examples/fib/haskell/haskell.cabal
parent03625304e740c9c0f7c434833dcded7ecdb9ca99 (diff)
created example
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