diff options
author | 2025-02-19 21:03:19 +0100 | |
---|---|---|
committer | 2025-02-19 21:03:21 +0100 | |
commit | cf20ad648a6654d2184b0b6f528d698a4fbc0b63 (patch) | |
tree | a340eeee92c317de1b3c7321b6959e747e9fdbaf /achat.cabal |
init
basic haskell-halogen project, `app/Main.hs` from
Swordlash/haskell-halogen@0db1410e5bf2a383148fa067ae46a986a87c30c4
Diffstat (limited to 'achat.cabal')
-rw-r--r-- | achat.cabal | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/achat.cabal b/achat.cabal new file mode 100644 index 0000000..766bf67 --- /dev/null +++ b/achat.cabal @@ -0,0 +1,22 @@ +cabal-version: 3.4 +name: achat +version: 0.1.0.0 +license: BSD-2-Clause +license-file: LICENSE +maintainer: aforemny@posteo.de +author: Alexander Foremny +category: Web +build-type: Simple + +executable achat + main-is: Main.hs + hs-source-dirs: app + default-language: Haskell2010 + build-depends: + base, + clay, + haskell-halogen-core, + kan-extensions, + protolude, + row-types, + unliftio |