haskell-games/snake/package.yaml

56 lines
957 B
YAML
Raw Normal View History

2023-09-25 15:25:46 +02:00
name: snake
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: Magic_RB
maintainer: magic_rb@redalder.org
# A copyright notice.
# copyright:
# category:
dependencies:
- base
- unordered-containers
- bytestring
- text >= 2.0.1
- sdl2
- sdl2-image
- effectful-core
- extra
- lens
- vector
- random
other-extensions:
- ImportQualifiedPost
- OverloadedStrings
library:
verbatim:
default-language: GHC2021
source-dirs: lib
exposed-modules:
- Snake
executables:
snake:
ghc-options:
- -threaded
verbatim:
default-language: GHC2021
main: Main.hs
other-modules: []
source-dirs: app
dependencies: snake