This repository has been archived by the owner on Mar 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
packages.dhall
83 lines (80 loc) · 2.36 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
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
let upstream =
https://github.com/purescript/package-sets/releases/download/psc-0.14.1-20210613/packages.dhall sha256:5f10380b3ca7d3a32ea5c2b7535e4814a5e3f3590c70692f76e596d6ab0687b3
let additions =
{ strictlypositiveint =
{ repo = "https://github.com/jamieyung/purescript-strictlypositiveint"
, version = "master"
, dependencies = [ "prelude" ]
}
, zipperarray =
{ repo = "https://github.com/jamieyung/purescript-zipperarray"
, version = "master"
, dependencies =
[ "arrays", "maybe", "prelude", "naturals", "strictlypositiveint" ]
}
, event =
{ repo = "https://github.com/mikesol/purescript-event"
, version = "master"
, dependencies =
[ "arrays"
, "console"
, "control"
, "datetime"
, "effect"
, "either"
, "filterable"
, "foldable-traversable"
, "js-timers"
, "maybe"
, "now"
, "ordered-collections"
, "prelude"
, "psci-support"
, "refs"
, "tuples"
, "unsafe-reference"
]
}
, behaviors =
{ repo = "https://github.com/mikesol/purescript-behaviors"
, version = "master"
, dependencies =
[ "psci-support"
, "effect"
, "ordered-collections"
, "filterable"
, "nullable"
, "event"
, "web-html"
, "web-events"
, "web-uievents"
]
}
, debugged =
{ dependencies =
[ "prelude"
, "console"
, "ordered-collections"
, "either"
, "tuples"
, "lists"
, "strings"
, "arrays"
, "bifunctors"
, "record"
, "effect"
, "datetime"
, "enums"
, "unordered-collections"
, "fixed-points"
]
, repo = "https://github.com/Mateiadrielrafael/purescript-debugged"
, version = "633220f91f87c9acbc4eebbf87628e6cdc658b7b"
}
}
let packages =
upstream
with lunarlog-prelude = ./packages/loglude/spago.dhall as Location
with lunarlog-geometry = ./packages/geometry/spago.dhall as Location
with lunarlog-core = ./packages/core/spago.dhall as Location
in packages // additions