frpball/frpball.cabal

36 lines
1.0 KiB
Plaintext
Raw Permalink Normal View History

2019-08-04 09:25:06 +00:00
cabal-version: 2.4
-- Initial package description 'frpball.cabal' generated by 'cabal init'.
-- For further documentation, see http://haskell.org/cabal/users-guide/
name: frpball
version: 0.0.0.0
-- synopsis:
-- description:
-- bug-reports:
license: GPL-3.0-only
license-file: LICENSE
author: nek0
maintainer: nek0@nek0.eu
-- copyright:
category: Game
extra-source-files: CHANGELOG.md
executable frpball
main-is: Main.hs
other-modules: Types
default-extensions: OverloadedStrings
-- other-extensions:
2019-10-10 09:06:58 +00:00
build-depends: base >=4.12.0.0 && <5
2019-08-04 09:25:06 +00:00
, reactive-banana
2019-10-10 09:06:58 +00:00
, sdl2 >=2.5.0.0 && <2.6
, GPipe >=2.2.4
2019-08-04 09:25:06 +00:00
, linear
, gl
, text
, stm
2019-08-29 19:29:16 +00:00
, mtl
2019-10-12 08:34:54 +00:00
, random
2019-08-04 09:25:06 +00:00
hs-source-dirs: src
ghc-options: -Wall
default-language: Haskell2010