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
70
71
72
73
74
|
cabal-version: 2.4
name: pager
version: 1.0.0
license: MIT
author: tv <tv@krebsco.de>
maintainer: tv@krebsco.de
build-type: Simple
--category: System
--synopsis: window manager agnostic desktop pager
--description: window manager agnostic desktop pager :)
source-repository head
type: git
location: https://cgit.krebsco.de/pager
source-repository this
type: git
location: https://cgit.krebsco.de/pager
tag: 1.0.0
executable pager
main-is: main.hs
default-language: Haskell2010
ghc-options: -Wall -threaded -with-rtsopts=-N
hs-source-dirs: src
build-depends: base >= 4.13 && < 4.14
, aeson
, data-default
, blessings
, bytestring
, hack
, probability
, scanner
, speculate
, split
, text
, terminal-size
-- TODO hack
, http-client
, http-types
, unix
, time
, containers
, io-streams
, optparse-applicative
, network
, pager
-- TODO remove stuff for xmonad-web
--, transformers
-- END xmonad-web
--, X11
--, xmonad
--, xmonad-aeson
-- TODO , xmonad-web
--, xmonad-tv
other-modules: Much.Screen
, Pager.Rasterizer
, Pager.Types
, Sixel
, State
library
build-depends:
base
, aeson
, template-haskell
, text
default-language: Haskell2010
exposed-modules: Pager.Types
ghc-options: -Wall
hs-source-dirs: src
|