movie-monad-0.0.3.0: movie-monad.cabal
name: movie-monad
version: 0.0.3.0
synopsis: Plays videos using GStreamer and GTK+.
description: A free and simple to use video player built with Haskell.
homepage: https://github.com/lettier/movie-monad
license: BSD3
license-file: LICENSE
author: Lettier
maintainer: Lettier
copyright: 2017 David Lettier
category: Application
, Multimedia
, Multimedia Player
, Video
build-type: Simple
cabal-version: >= 1.10
extra-source-files: README.md
, LICENSE
, CHANGELOG.md
, makefile
, stack.yaml
, ./src/dev/Paths_movie_monad.hs
, ./src/data/gui.glade
, ./src/data/movie-monad-logo.svg
, ./src/data/movie-monad-icon.png
, ./src/Records.hs
, ./src/Constants.hs
, ./src/Window.hs
, ./src/CommandLine.hs
, ./src/Keyboard.hs
, ./src/Mouse.hs
, ./src/FileChooser.hs
, ./src/Seek.hs
, ./src/PlayPause.hs
, ./src/VideoSizeSelector.hs
, ./src/Fullscreen.hs
, ./src/ErrorMessage.hs
, ./src/About.hs
, ./src/VideoInfo.hs
, ./src/Playbin.hs
, ./src/Uri.hs
, ./src/Utils.hs
, ./src/ScreensaverAndPowerManagement.hs
data-files: data/gui.glade
, data/movie-monad-logo.svg
, data/movie-monad-icon.png
data-dir: ./src/
source-repository head
type: git
location: https://github.com/lettier/movie-monad.git
executable movie-monad
main-is: Main.hs
default-language: Haskell2010
build-depends: base == 4.9.*
, filepath == 1.4.*
, system-fileio == 0.3.*
, system-filepath == 0.4.*
, text == 1.2.*
, time == 1.6.*
, process == 1.4.*
, MissingH == 1.4.*
, network-uri == 2.6.*
, haskell-gi-base == 0.20.8
, gi-gobject == 2.0.*
, gi-glib == 2.0.*
, gi-gdk == 3.0.*
, gi-gdkpixbuf == 2.0.*
, gi-gst == 1.0.*
, gi-gstvideo == 1.0.*
, gi-gtk == 3.0.18
ghc-options: -threaded -with-rtsopts=-N -Wall -freverse-errors
other-modules: Paths_movie_monad
, Records
, Constants
, Window
, CommandLine
, Keyboard
, Mouse
, FileChooser
, Seek
, PlayPause
, VideoSizeSelector
, Fullscreen
, ErrorMessage
, About
, VideoInfo
, Uri
, Playbin
, Utils
, ScreensaverAndPowerManagement
hs-source-dirs: ./src/