-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackages.dhall
48 lines (42 loc) · 1.3 KB
/
packages.dhall
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
let upstream =
https://github.com/purescript/package-sets/releases/download/psc-0.14.5-20211116/packages.dhall
sha256:7ba810597a275e43c83411d2ab0d4b3c54d0b551436f4b1632e9ff3eb62e327a
let overrides = {=}
let additions =
{ subcategory =
{ dependencies = [ "prelude", "profunctor", "record" ]
, repo = "https://github.com/matthew-hilty/purescript-subcategory.git"
, version = "v0.2.0"
}
}
in (upstream // overrides // additions)
with variant.version = "map-variant"
with variant.repo = "https://github.com/MonoidMusician/purescript-variant"
with convertable-options = {
repo = "https://github.com/natefaubion/purescript-convertable-options",
version = "v1.0.0",
dependencies = [ "console", "effect", "maybe", "record" ],
}
with halogen-formless = {
repo = "https://github.com/thomashoneyman/purescript-halogen-formless",
version = "main",
dependencies =
[ "convertable-options"
, "effect"
, "either"
, "foldable-traversable"
, "foreign-object"
, "halogen"
, "heterogeneous"
, "maybe"
, "prelude"
, "record"
, "safe-coerce"
, "type-equality"
, "unsafe-coerce"
, "unsafe-reference"
, "variant"
, "web-events"
, "web-uievents"
]
}