summaryrefslogtreecommitdiff
path: root/loom.cabal
diff options
context:
space:
mode:
authorThomas Ulmer <thomasmulmer02@gmail.com>2026-06-02 17:19:14 -0700
committerThomas Ulmer <thomasmulmer02@gmail.com>2026-06-02 17:19:14 -0700
commit924746b8ab4904d24a3cb242b95e8b91f0970129 (patch)
treec0f991e2d74665c9f3e184bd31543faf1785db45 /loom.cabal
initial (functional?) version
Diffstat (limited to 'loom.cabal')
-rw-r--r--loom.cabal30
1 files changed, 30 insertions, 0 deletions
diff --git a/loom.cabal b/loom.cabal
new file mode 100644
index 0000000..233d8a5
--- /dev/null
+++ b/loom.cabal
@@ -0,0 +1,30 @@
+cabal-version: 3.0
+name: loom
+version: 0.1.0.0
+-- synopsis:
+-- description:
+homepage: tccq.net
+license: MIT
+license-file: LICENSE
+author: Thomas Ulmer
+maintainer: thomasmulmer02@gmail.com
+-- copyright:
+category: Web
+build-type: Simple
+extra-doc-files: CHANGELOG.md
+-- extra-source-files:
+
+common warnings
+ ghc-options: -Wall
+
+executable loom
+ import: warnings
+ main-is: Main.hs
+ -- other-modules:
+ -- other-extensions:
+ build-depends: base ^>=4.18.3.0
+ , filepath
+ , directory
+ , text
+ hs-source-dirs: src
+ default-language: Haskell2010