name: no-buffering-workaround version: 0.1.0.0 synopsis: Workaround for GHC bug #2189. description: This package exists as a workaround for GHC bug #2189, \"@hSetBuffering stdin NoBuffering@ doesn't work on Windows\". It provides functionality for reading from standard input without buffering, in a way that works under GHC on Windows as well as other configurations. This is useful for key-driven console applications such as roguelikes. homepage: http://github.com/arotenberg/no-buffering-workaround#readme license: Apache-2.0 license-file: LICENSE author: Aaron Rotenberg maintainer: adrotenberg (at) gmail.com copyright: 2015 Aaron Rotenberg category: Console build-type: Simple -- extra-source-files: cabal-version: >=1.10 library hs-source-dirs: src exposed-modules: System.IO.NoBufferingWorkaround build-depends: base >= 4.7 && < 5 default-language: Haskell2010 other-extensions: CPP source-repository head type: git location: https://github.com/arotenberg/no-buffering-workaround