ncurses 0.2.2 → 0.2.3
raw patch · 1 files changed
+6/−4 lines, 1 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- ncurses.cabal +6/−4
ncurses.cabal view
@@ -1,5 +1,5 @@ name: ncurses-version: 0.2.2+version: 0.2.3 license: GPL-3 license-file: license.txt author: John Millikin <jmillikin@gmail.com>@@ -34,7 +34,7 @@   drawString \"(press q to quit)\"   moveCursor 0 0   render-   waitFor w (\ev -> ev == EventCharacter \'q\' || ev == EventCharacter \'Q\')+   waitFor w (\\ev -> ev == EventCharacter \'q\' || ev == EventCharacter \'Q\') . waitFor :: Window -> (Event -> Bool) -> Curses () waitFor w p = loop where@@ -56,7 +56,7 @@ source-repository head type: bazaar location: https://john-millikin.com/branches/haskell-ncurses/0.2/- tag: haskell-ncurses_0.2.2+ tag: haskell-ncurses_0.2.3 library hs-source-dirs: lib@@ -71,7 +71,9 @@ build-tools: c2hs >= 0.15 - extra-libraries: panel ncursesw+ -- Do not use pkg-config to find ncurses libraries, because the .pc files+ -- are missing or broken in many installations.+ extra-libraries: panelw ncursesw c-sources: cbits/hsncurses-shim.c