-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackages-50more.txt
2513 lines (2513 loc) · 29.7 KB
/
packages-50more.txt
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
unordered-containers
aeson
hashable
network
hspec
hspec-core
hspec-discover
http-client
wai-extra
ansi-terminal
attoparsec
Cabal
pandoc
warp
primitive
lens
semigroups
cryptonite
semigroupoids
yaml
tasty
unliftio
hlint
text
streaming-commons
bifunctors
optparse-applicative
random
megaparsec
conduit
vector
clock
transformers-compat
th-abstraction
base-compat
persistent
basement
base64-bytestring
async
constraints
time-compat
memory
ghc-lib-parser
base-orphans
unix-compat
ghc-lib-parser-ex
text-short
resourcet
fast-logger
splitmix
base-compat-batteries
zlib
QuickCheck
base16-bytestring
http2
mono-traversable
free
regex-base
HTTP
texmath
tls
alex
kan-extensions
blaze-builder
invariant
constraints-extras
concurrent-output
profunctors
extra
th-lift-instances
contravariant
dlist
statistics
file-embed
colour
wai-logger
x509-validation
iproute
semialign
scientific
process
typed-process
http-client-tls
wai-app-static
call-stack
regex-tdfa
JuicyPixels
StateVar
mmorph
data-fix
servant-server
http-conduit
witherable
x509-store
stylish-haskell
servant
cabal-install
cereal
x509
happy
binary
monoidal-containers
skylighting
th-expand-syns
cborg
x509-system
recursion-schemes
barbies
hslua
aeson-pretty
hsc2hs
indexed-traversable
regex-posix
serialise
retry
entropy
yesod-core
cabal-doctest
adjunctions
containers
mwc-random
attoparsec-iso8601
doctemplates
lifted-async
monad-control
directory
conduit-extra
bytestring
snap-core
th-compat
network-uri
prettyprinter
uuid-types
haskell-src-exts
psqueues
transformers-base
skylighting-core
terminal-size
pandoc-types
fingertree
comonad
network-info
hakyll
stm
microlens-th
blaze-markup
indexed-traversable-instances
OneTuple
deriving-compat
HUnit
Diff
hedgehog
foldl
list-t
quickcheck-instances
algebraic-graphs
haskell-src-meta
digest
distributive
foundation
th-reify-many
hashtables
utf8-string
citeproc
generic-deriving
vector-algorithms
some
MonadRandom
unicode-transforms
parser-combinators
formatting
hie-bios
http-api-data
persistent-sqlite
unliftio-core
zip-archive
th-extras
katip
microlens
persistent-template
generic-lens
sop-core
streaming
vector-th-unbox
th-orphans
lens-aeson
tagged
ormolu
blaze-html
tasty-hedgehog
snap-server
Glob
charset
integer-logarithms
hslua-module-text
logict
safe-exceptions
ghc-exactprint
haskoin-store
optics-core
cryptohash-sha1
pretty-simple
temporary
case-insensitive
io-streams
tree-diff
commonmark
parsec
th-lift
auto-update
shake
syb
tasty-quickcheck
deriving-aeson
doclayout
fourmolu
ansi-wl-pprint
hackage-security
criterion
typerep-map
singleton-bool
commonmark-extensions
unix-bytestring
websockets
cryptohash-md5
haddock-library
split
generic-lens-core
vault
newtype-generics
time
ListLike
http-types
reflection
these
optics-extra
bech32
hslua-module-system
wai
uniplate
pretty-show
strict
asn1-types
cmdargs
esqueleto
dependent-sum
xml-conduit
safe
cookie
th-utilities
Unique
dependent-sum-template
retrie
pipes
exceptions
streaming-bytestring
data-default-class
mime-types
servant-client
shelly
shakespeare
cryptohash-sha256
optics-th
simple-sendfile
generics-sop
lsp-test
network-byte-order
connection
ipynb
pipes-safe
generic-data
http-date
lifted-base
tidal
uuid
math-functions
assoc
dom-lt
either
unix-time
data-default
transformers-except
half
parallel
base
commonmark-pandoc
ats-pkg
hslua-module-path
appar
data-default-instances-old-locale
socks
tasty-golden
void
vector-binary-instances
cpphs
parsers
language-c
unagi-chan
old-locale
string-conv
tagsoup
stm-chans
warp-tls
groups
asn1-encoding
nothunks
unicode-data
SHA
doctest
text-conversions
asn1-parse
jira-wiki-markup
darcs
silently
brick
composition-prelude
lsp-types
pem
prometheus
hspec-expectations
lucid
binary-orphans
brittany
deque
haskell-lexer
opentelemetry
async-timer
easy-file
hslua-packaging
servant-client-core
implicit-hie-cradle
hourglass
primitive-extras
byteorder
microlens-mtl
tasty-hunit
HsYAML
libyaml
purescript
cassava
data-default-instances-dlist
dec
old-time
strict-list
wl-pprint-text
atomic-primops
http-media
toysolver
transformers
fin
implicit-hie
yesod-auth
prettyprinter-ansi-terminal
ghc-paths
hslua-marshalling
monad-par
hslua-core
unbounded-delays
ghc-trace-events
bimap
dhall
generic-random
diagrams-lib
ekg
utility-ht
hpack
hslua-objectorientation
monad-logger
yesod
yesod-form
quickcheck-io
xml-types
X11
protolude
fmlist
mtl-compat
HsOpenSSL
type-equality
bytes
data-default-instances-containers
lua
hslua-classes
dns
hslua-aeson
setenv
tar
hint
bsb-http-chunked
readable
word8
apply-refact
rio
linear
unicode-collation
ap-normalize
deferred-folds
haskeline
egison
ghc-source-gen
zlib-bindings
mtl
lukko
Win32
bytestring-builder
hoogle
libsystemd-journal
bin
echo
time-manager
dependent-map
insert-ordered-containers
stm-hamt
io-streams-haproxy
process-extras
direct-sqlite
filelock
Only
abstract-par
polyparse
graphviz
cabal2nix
monoid-subclasses
monad-par-extras
safecopy
newtype
diagrams-svg
fgl
hscolour
code-page
errors
mersenne-random-pure64
base58-bytestring
fmt
indexed-profunctors
ral
gtk2hs-buildtools
lsp
moo
random-shuffle
sqlite-simple
system-filepath
edit-distance
partial-order
path
Agda
time-locale-compat
emojis
ghc-lib
regex-compat
resource-pool
show-combinators
streaming-binary
ekg-core
ekg-json
wl-pprint-annotated
blaze-textual
lpeg
quiet
wcwidth
path-io
gray-code
neat-interpolation
base64-bytestring-type
fsnotify
yesod-bin
abstract-deque
erf
hostname
hslua-module-version
systemd
tf-random
xml
ed25519
resolv
statistics-linreg
pointed
stm-containers
xmobar
cairo
equivalence
primitive-unlifted
floskell
dense-linear-algebra
double-conversion
postgresql-simple
trifecta
versions
vty
optparse-generic
string-conversions
githash
canonical-json
crypto-api
c2hs
generic-monoid
jose
ghc-check
monad-loops
yesod-test
filepath
criterion-measurement
vector-sized
active
openapi3
hslua-module-doclayout
microstache
monoid-extras
modern-uri
text-show
hslogger
time-units
authenticate-oauth
vector-space
MemoTrie
hledger
persistent-postgresql
singletons
hsyslog
pandoc-lua-marshal
network-bsd
filepattern
language-javascript
mintty
hinotify
focus
unix
universe-base
semirings
hedis
js-chart
turtle
rope-utf16-splay
ghcide
hedgehog-corpus
xmonad
glib
path-pieces
MissingH
SafeSemaphore
STMonadTrans
data-binary-ieee754
gnuplot
lens-family-core
multistate
HTF
dual-tree
monad-dijkstra
authenticate
text-icu
clash-ghc
pango
hasql
pandoc-citeproc
js-jquery
base-unicode-symbols
heapsize
swagger2
yesod-persistent
scrypt
OpenGLRaw
fuzzy
ghc-byteorder
propellor
Cabal-syntax
HsYAML-aeson
relude
optparse-simple
lift-type
butcher
postgresql-libpq
data-accessor
heaps
scotty
Stream
beam-migrate
cabal-rpm
hledger-lib
js-flot
req
setlocale
fail
GLUT
email-validate
gitrev
tls-session-manager
beam-core
classy-prelude
lazysmallcheck
th-desugar
uri-encode
hyphenation
selective
acid-state
hedgehog-quickcheck
hiedb
pantry
ghc-mod
servant-docs
cryptohash
RSA
websockets-snap
diagrams-postscript
primes
boring
clientsession
deepseq
smallcheck
tasty-expected-failure
dbus
hosc
monad-memo
refact
hledger-web
calamity
diagrams-core
enclosed-exceptions
hindent
wide-word
js-dgtable
xss-sanitize
beam-sqlite
cabal-debian
happstack-server
nats
Chart
Spock
statestack
mustache
SVGFonts
ShellCheck
base64
gloss
tasty-hspec
tasty-th
filemanip
lattices
cabal-plan
crypto-pubkey-types
xmonad-contrib
generic-arbitrary
sorted-list
diagrams-contrib
ghc-typelits-knownnat
OpenGL
haskoin-store-data
hls-plugin-api
string-interpolate
amazonka-core
mainland-pretty
srcloc
quickcheck-classes
tasty-lua
cborg-json
mod
cmark-gfm
text-manipulate
amazonka
data-clist
enummapset
pandoc-crossref
postgresql-binary
wai-websockets
contiguous
ghc-events
text-builder
polysemy
reducers
saltine
bmp
Histogram
base16
bytebuild
snap-blaze
template-haskell
Chart-cairo
aws
refinery
tasty-rerun
X11-xft
async-extras
ixset-typed
sbv
murmur-hash
apiary
ghc-prim
hie-compat
madlang
GLURaw
cryptostore
Chart-diagrams
raw-strings-qq
servant-openapi3
Boolean
influxdb
servant-swagger-ui
text-metrics
yesod-static
hspec-golden-aeson
fay
hspec-wai
inline-c
language-c-quote
mime-mail
clash-lib
rattletrap
casing
llvm-general
tasty-smallcheck
hoauth2
hspec-meta
microlens-platform
byteable
data-accessor-transformers
primitive-addr
NumInstances
keys
libmpd
store
byteslice
data-tree-print
HaXml
arithmoi
data-hash
diagrams-cairo
extensible-exceptions
intero
clash-prelude
bech32-th
haskell-lsp
jwt
repline
system-fileio
Z-Data
bindings-DSL
boxes
hw-prim
lazy-search
say
amazonka-s3
exact-combinatorics
wai-cors
haskell-language-server
language-docker
tasty-silver
test-framework
servant-swagger
bytestring-lexing
pcre-light
pqueue
hledger-ui
size-based
czipwith
mongoDB
vector-instances
dobutokO2
haskell-gi
lens-family
protocol-buffers
uri-bytestring
HStringTemplate
aeson-qq
bv-sized
idris
int-cast
language-puppet
microlens-ghc
row-types
secp256k1-haskell
skein
wreq
keter
regex-posix-clib
haskell-dap
stack
tmp-postgres
cipher-aes
ghc-tcplugins-extra
ghc-typelits-natnormalise
gi-gtk
indexed-list-literals
language-ats
avro
finite-typelits
unsafe
atomic-write
stringsearch
BlogLiterately
dictionary-sharing
base-prelude
regex-pcre-builtin
servant-blaze
force-layout
github
highlighting-kate
operational
proto-lens
IntervalMap
gitit
validity
arbtt
cabal-helper
cgrep
diagrams
microlens-aeson
amazonka-lambda
creatur
Decimal
ghc
haddock-api
hxt
storable-record
BNFC
PyF
feed
gi-gdk
ordered-containers
svg-builder
vinyl
word-wrap
antiope-core
concise
concurrent-extra
infer-license
validation
ghc-typelits-extra
snap
timeplot
amazonka-ec2
ats-format
dotgen
hexpat
optics
universe-reverse-instances
lrucache
HaTeX
dhall-json
hsdev
inspection-testing
managed
servant-foreign
testing-type-modifiers
OddWord
ad
amazonka-sts
cprng-aes
hfsevents
hjsmin
clckwrks
css-text
intervals
parameterized-utils
streamly
conduit-combinators
crypto-random
ghcid
hsimport
open-browser
sandi
antiope-sns
haddock
string-qq
binary-parser
bytesmith
cryptonite-conduit
hmatrix
securemem
weeder
bloomfilter
gio
text-zipper
hls-graph
matrix
servant-lucid
amazonka-sdb
hxt-charproperties
network-multicast
quickcheck-arbitrary-adt
amazonka-sns
freer-simple
git-annex
yesod-platform
basic-prelude
conduit-parse
ghc-bignum-orphans
json
mighttpd2
plot
jsaddle
heist
ip
monad-time
shake-ats
stratosphere
validation-selective
amazonka-cloudwatch
html-conduit
ngx-export
potoki-core
type-errors
amazonka-iam
fast-arithmetic
hls-retrie-plugin
quickcheck-classes-base
data-dword
gi-glib
haskell-gi-base
uuagc
casadi-bindings
crypto-cipher-types
persistent-mongoDB
ObjectName
hls-hlint-plugin
http-streams
MFlow
amazonka-redshift
arrows
config-ini
mysql-simple
rest-gen
amazonka-cloudsearch
amazonka-directconnect
apecs
csound-expression
exception-transformers
hxt-regex-xmlschema
libarchive
relational-query
GLFW-b
TypeCompose
amazonka-autoscaling
amazonka-cloudfront
dejafu
hamlet
terminfo
array
fltkhs
hls-eval-plugin
werewolf
amazonka-elasticache
amazonka-support
bytestring-encoding
bytestring-trie
comonad-transformers
fclabels
haskell-src
hpage
octane
preamble
text-builder-dev
amazonka-cognito-sync
bound
colourista
futhark-data
gi-cairo
hls-call-hierarchy-plugin
servant-websockets
amazonka-config
co-log-core
gi-gobject
http-reverse-proxy
Z-IO
debian
gi-gdkpixbuf
gnss-converters
miso
pureMD5
xml-hamlet
aeson-casing
exact-pi
haskell-lsp-types
hls-pragmas-plugin
binary-instances
blockfrost-api
blockfrost-client
config-value
hls-module-name-plugin
jose-jwt
persistent-mysql
amazonka-opsworks
gi-gio
hls-explicit-imports-plugin
libBF
boomerang
checkers
morpheus-graphql
amazonka-dynamodb
cabal-bounds
futhark
ginger
hopenpgp-tools
tasty-discover
Yampa
amazonka-emr
antiope-sqs
directory-tree
hprotoc
ieee754
refined
antiope-s3
ghci-dap