This repository has been archived by the owner on Jun 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
packages.dhall
72 lines (68 loc) · 1.92 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
let upstream =
https://github.com/purescript/package-sets/releases/download/psc-0.13.8-20201223/packages.dhall sha256:a1a8b096175f841c4fef64c9b605fb0d691229241fd2233f6cf46e213de8a185
let overrides =
{ run =
{ dependencies =
[ "aff"
, "effect"
, "either"
, "free"
, "maybe"
, "newtype"
, "prelude"
, "profunctor"
, "tailrec"
, "tuples"
, "type-equality"
, "unsafe-coerce"
, "variant"
]
, repo = "https://github.com/Mateiadrielrafael/purescript-run.git"
, version = "master"
}
}
let additions =
{ debugged =
{ dependencies =
[ "prelude"
, "console"
, "ordered-collections"
, "either"
, "tuples"
, "lists"
, "strings"
, "arrays"
, "bifunctors"
, "record"
, "effect"
, "generics-rep"
, "datetime"
, "enums"
, "unordered-collections"
]
, repo = "https://github.com/Mateiadrielrafael/purescript-debugged"
, version = "master"
}
, undefined-is-not-a-problem =
{ dependencies =
[ "assert"
, "console"
, "effect"
, "foreign"
, "prelude"
, "psci-support"
, "random"
, "typelevel-prelude"
, "unsafe-coerce"
]
, repo =
"https://github.com/paluh/purescript-undefined-is-not-a-problem"
, version = "2f8b4e91a814cf558bdc15dc96667ac806c4730f"
}
}
let packages =
upstream
with lunarflow-utils = ./packages/utils/spago.dhall as Location
with lunarflow-core = ./packages/core/spago.dhall as Location
with lunarflow-geometry = ./packages/geometry/spago.dhall as Location
in packages ⫽ overrides ⫽ additions