packages feed

terminal-size-0.3.0: terminal-size.cabal

name:                terminal-size
version:             0.3.0
synopsis:            Get terminal window height and width
description:
  Get terminal window height and width without ncurses dependency.
license:             BSD3
license-file:        LICENSE
author:              Andreas Hammar, Matvey Aksenov
maintainer:          matvey.aksenov@gmail.com
category:            System
build-type:          Simple
cabal-version:       >= 1.10
extra-source-files:
  README.markdown
  CHANGELOG.markdown

library
  default-language:  Haskell2010
  build-depends:     base >= 4 && < 5
  build-tools:       hsc2hs
  hs-source-dirs:    src
  exposed-modules:   System.Console.Terminal.Size
  other-modules:     System.Console.Terminal.Common
  if os(Windows)
    other-modules:   System.Console.Terminal.Windows
  else
    other-modules:   System.Console.Terminal.Posix
  ghc-options:       -Wall
                     -fno-warn-unused-do-bind

source-repository head
  type:     git
  location: https://github.com/biegunka/terminal-size