hm/hm.cabal

32 lines
949 B
Plaintext

cabal-version: 2.4
name: hm
version: 0.1.0.0
synopsis: toy programming language
-- description:
homepage: https://githug.xyz/depsterr/hm
-- bug-reports:
license: ISC
license-file: LICENSE
author: depsterr
maintainer: depsterr@protonmail.com
-- copyright:
category: Programming Language
library
ghc-options: -Werror=incomplete-patterns -Wall -fno-warn-name-shadowing
, Simple.CC
build-tool-depends: alex:alex >= 3.0, happy:happy >= 1.19.5
build-depends: base >=4
, array
, containers
, transformers
, mtl
hs-source-dirs: src
default-language: Haskell2010
executable sexprml
main-is: Main.hs
build-depends: base >=4, hm
hs-source-dirs: app
default-language: Haskell2010