wxhnotepad-1.0.0: wxhnotepad.cabal
name: wxhnotepad
version: 1.0.0
cabal-version: >=1.6
build-type: Custom
license: BSD3
license-file: LICENSE
copyright: 2010 Fernando "Brujo" Benavides
maintainer: greenmellon@gmail.com
stability: educational
homepage: http://github.com/elbrujohalcon/wxhnotepad
package-url: http://code.haskell.org/wxhnotepad
bug-reports: http://github.com/elbrujohalcon/wxhnotepad/issues
synopsis: An example of how to implement a basic notepad with wxHaskell
description: A program to learn how to implement basic text editing functionality with wxHaskell.
It's not useful itself, the point is to read the code and learn from it ;)
The program is divided in 6 steps, each one corresponding to a window and a haskell module. Each step includes what was learnt in the previous one, so Step6 is an almost complete basic text editor.
category: Development, Education, IDE, Editor
author: Fernando "Brujo" Benavides
tested-with: GHC ==6.10.3, GHC ==6.10.4
data-files: LICENSE README
res/images/*.png
data-dir: ""
extra-source-files: Setup.hs
extra-tmp-files:
source-repository head
type: git
location: git://github.com/elbrujohalcon/wxhnotepad.git
Executable wxhnotepad
build-depends: base >= 4, base < 5,
wxcore >=0.11.1, wxcore < 0.13,
wx >=0.11.1, wx < 0.13
main-is: Main.hs
buildable: True
hs-source-dirs: src
other-modules: Step1, Step2, Step3, Step4, Step5, Step6
ghc-options: -fwarn-unused-imports -fwarn-missing-fields -fwarn-incomplete-patterns