This repository has been archived by the owner on Feb 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tianbar.cabal
155 lines (151 loc) · 5.64 KB
/
tianbar.cabal
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
name: tianbar
version: 1.2.5
synopsis: A desktop bar based on WebKit
description:
A desktop bar using WebKit for rendering as much as possible.
Based on Taffybar.
homepage: https://github.com/koterpillar/tianbar
license: MIT
license-file: LICENSE
author: Alexey Kotlyarov
maintainer: [email protected]
category: System
build-type: Simple
cabal-version: >=1.10
data-files: README.md
, index.html
, scripts/command.js
, scripts/dbus.js
, scripts/ibus.js
, scripts/network.js
, scripts/power.js
, scripts/socket.js
, scripts/tianbar.js
, scripts/time.js
, scripts/vendor/jquery.js
, scripts/vendor/moment.js
, scripts/vendor/require.js
, scripts/volume.js
, scripts/weather.js
, scripts/xmonad.js
executable tianbar
default-language: Haskell2010
build-depends: base >3 && <5
, aeson
, bytestring
, containers
, directory
, dbus
, filepath
, haskell-gi-base
, http-types
, gi-gdk
, gi-gio
, gi-glib
, gi-gtk
, gi-webkit2
, lens
, mime-types
, mtl
, network
, process
, random
, scientific
, split
, text
, transformers
, vector
, unordered-containers
, utf8-string
, xdg-basedir
pkgconfig-depends: gtk+-3.0 >= 3.22, webkit2gtk-4.0
hs-source-dirs: src
main-is: Main.hs
other-modules: System.Tianbar
, System.Tianbar.Callbacks
, System.Tianbar.Configuration
, System.Tianbar.Server
, System.Tianbar.StrutProperties
, System.Tianbar.Plugin
, System.Tianbar.Plugin.All
, System.Tianbar.Plugin.Combined
, System.Tianbar.Plugin.FileSystem
, System.Tianbar.Plugin.ExecuteCommand
, System.Tianbar.Plugin.DBus
, System.Tianbar.Plugin.DBus.FromData
, System.Tianbar.Plugin.DBus.JSON
, System.Tianbar.Plugin.DBus.Utils
, System.Tianbar.Plugin.GSettings
, System.Tianbar.Plugin.Socket
, System.Tianbar.RequestResponse
, System.Tianbar.WebKit
ghc-options: -Wall -rtsopts -threaded
library
default-language: Haskell2010
build-depends: base >3 && <5
, dbus
, xmonad
, xmonad-contrib
, utf8-string
, blaze-html
, blaze-markup
hs-source-dirs: src
exposed-modules: System.Tianbar.XMonadLog
ghc-options: -Wall
test-suite tests
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: src, tests
main-is: TestMain.hs
build-depends: base >3 && <5
, tasty
, tasty-quickcheck
, aeson
, bytestring
, containers
, directory
, dbus
, filepath
, haskell-gi-base
, http-types
, gi-gdk
, gi-gio
, gi-glib
, gi-gtk
, gi-webkit2
, lens
, mime-types
, mtl
, network
, process
, random
, scientific
, split
, text
, transformers
, vector
, unordered-containers
, utf8-string
, xdg-basedir
other-modules: System.Tianbar
, System.Tianbar.Callbacks
, System.Tianbar.Configuration
, System.Tianbar.Server
, System.Tianbar.StrutProperties
, System.Tianbar.Plugin
, System.Tianbar.Plugin.All
, System.Tianbar.Plugin.Combined
, System.Tianbar.Plugin.FileSystem
, System.Tianbar.Plugin.ExecuteCommand
, System.Tianbar.Plugin.DBus
, System.Tianbar.Plugin.DBus.FromData
, System.Tianbar.Plugin.DBus.JSON
, System.Tianbar.Plugin.DBus.Utils
, System.Tianbar.Plugin.GSettings
, System.Tianbar.Plugin.Socket
, System.Tianbar.RequestResponse
, System.Tianbar.WebKit
, TestPlugin.DBus.Serialization
source-repository head
type: git
location: git://github.com/koterpillar/tianbar.git