ibis/ibis.cabal

42 lines
1.2 KiB
Plaintext
Raw Permalink Normal View History

2019-01-29 22:55:45 +00:00
cabal-version: 2.4
-- Initial package description 'ibis.cabal' generated by 'cabal init'. For
-- further documentation, see http://haskell.org/cabal/users-guide/
name: ibis
version: 0.0.0.0
synopsis: A pdf presenter
-- description:
-- bug-reports:
license: GPL-3.0-only
license-file: LICENSE
author: nek0
maintainer: nek0@nek0.eu
-- copyright:
category: Graphics
extra-source-files: CHANGELOG.md
executable ibis
main-is: Main.hs
2019-01-31 15:01:01 +00:00
other-modules: Events
, Util
2019-01-29 22:55:45 +00:00
, Types
2019-02-02 21:45:57 +00:00
, Draw
2019-01-29 22:55:45 +00:00
-- other-extensions:
default-extensions: OverloadedStrings
build-depends: base >=4.11
2019-01-31 13:47:18 +00:00
, containers
2019-01-29 22:55:45 +00:00
, optparse-applicative
, poppler
2019-09-06 20:36:42 +00:00
, sdl2 ^>= 2.5.0.0
2019-01-29 22:55:45 +00:00
, linear
2019-01-30 23:11:39 +00:00
, monad-loops
, OpenGL
2019-02-02 21:45:57 +00:00
, GLUtil
2019-01-30 22:10:00 +00:00
, text
2019-01-31 13:47:18 +00:00
, magic
, split
2019-01-31 15:01:01 +00:00
, time
2019-02-02 21:45:57 +00:00
, bytestring
2019-01-29 22:55:45 +00:00
hs-source-dirs: src
default-language: Haskell2010