1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
name: pager
version: 0.1.1.0
synopsis: Open up a pager, like 'less' or 'more'
description:
This opens up the user's $PAGER. On Linux, this is usually called @less@. On
the various BSDs, this is usually @more@.
.
CHANGES
.
[0.1.1.0] Add @printOrPage@ function and @sendToPagerStrict@ function.
homepage: https://github.com/pharpend/pager
license: BSD2
license-file: LICENSE
author: Peter Harpending
maintainer: peter@harpending.org
bug-reports: https://github.com/pharpend/pager
copyright: Copyright (c) 2015, Peter Harpending.
category: Data, System, Text
build-type: Simple
cabal-version: >=1.10
extra-source-files:
README.md
LICENSE
data-files:
LICENSE
source-repository head
type: git
location: https://github.com/pharpend/pager.git
source-repository this
type: git
location: https://github.com/pharpend/pager.git
tag: 0.1.1.0
library
other-extensions:
LambdaCase
MultiWayIf
OverloadedStrings
default-language: Haskell2010
exposed-modules:
System.Pager
build-depends:
base ==4.*
, bytestring
, conduit >=1.2.3
, conduit-extra
, directory
, process
, resourcet
, safe
, unix
, terminfo
, text
, transformers
executable hs-pager-test-pager
default-language: Haskell2010
hs-source-dirs: test
other-modules: Paths_pager
main-is: main.hs
build-depends:
base ==4.*
, bytestring
, conduit-extra
, pager
, text
|