aboutsummaryrefslogtreecommitdiffstats
path: root/lang.cabal
diff options
context:
space:
mode:
authorJan Tuomi <jans.tuomi@gmail.com>2022-12-08 13:21:58 +0200
committerJan Tuomi <jans.tuomi@gmail.com>2022-12-08 13:21:58 +0200
commit34a0e2ac24bc0b2ac7d98124e54eb2a2d1635d83 (patch)
tree3fe6b5b520cf695832535ff86845a72d6fcf0122 /lang.cabal
parent723fa29e5ceb2f7ee4a13632ccfe3acf5e8808c2 (diff)
Add correct data to project files
Diffstat (limited to 'lang.cabal')
-rw-r--r--lang.cabal90
1 files changed, 0 insertions, 90 deletions
diff --git a/lang.cabal b/lang.cabal
deleted file mode 100644
index b4c7793..0000000
--- a/lang.cabal
+++ /dev/null
@@ -1,90 +0,0 @@
-cabal-version: 1.12
-
--- This file has been generated from package.yaml by hpack version 0.34.4.
---
--- see: https://github.com/sol/hpack
-
-name: lang
-version: 0.1.0.0
-description: Please see the README on GitHub at <https://github.com/githubuser/lang#readme>
-homepage: https://github.com/githubuser/lang#readme
-bug-reports: https://github.com/githubuser/lang/issues
-author: Author name here
-maintainer: example@example.com
-copyright: 2022 Author name here
-license: BSD3
-license-file: LICENSE
-build-type: Simple
-extra-source-files:
- README.md
- CHANGELOG.md
-
-source-repository head
- type: git
- location: https://github.com/githubuser/lang
-
-library
- exposed-modules:
- Builtins
- Interpreter
- Parser
- Tokenizer
- Utils
- other-modules:
- Paths_lang
- hs-source-dirs:
- src
- ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints -O2
- build-depends:
- HUnit ==1.6.2.0
- , base >=4.7 && <5
- , containers
- , farmhash ==0.1.0.5
- , haskeline ==0.8.2
- , mtl
- , regex-tdfa ==1.3.2
- , text
- , utf8-string ==1.0.2
- default-language: Haskell2010
-
-executable lang-exe
- main-is: Main.hs
- other-modules:
- Paths_lang
- hs-source-dirs:
- app
- ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints -O2 -threaded -rtsopts -with-rtsopts=-N
- build-depends:
- HUnit ==1.6.2.0
- , base >=4.7 && <5
- , containers
- , farmhash ==0.1.0.5
- , haskeline ==0.8.2
- , lang
- , mtl
- , regex-tdfa ==1.3.2
- , text
- , utf8-string ==1.0.2
- default-language: Haskell2010
-
-test-suite lang-test
- type: exitcode-stdio-1.0
- main-is: Spec.hs
- other-modules:
- TestUtils
- Paths_lang
- hs-source-dirs:
- test
- ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wmissing-export-lists -Wmissing-home-modules -Wpartial-fields -Wredundant-constraints -O2 -threaded -rtsopts -with-rtsopts=-N
- build-depends:
- HUnit ==1.6.2.0
- , base >=4.7 && <5
- , containers
- , farmhash ==0.1.0.5
- , haskeline ==0.8.2
- , lang
- , mtl
- , regex-tdfa ==1.3.2
- , text
- , utf8-string ==1.0.2
- default-language: Haskell2010