ibis/ibis.cabal

39 lines
1.1 KiB
Plaintext
Raw 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
-- 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
, sdl2
, linear
2019-01-30 23:11:39 +00:00
, monad-loops
, OpenGL
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-01-29 22:55:45 +00:00
hs-source-dirs: src
default-language: Haskell2010