-
Notifications
You must be signed in to change notification settings - Fork 0
/
packages.dhall
45 lines (42 loc) · 1.95 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
let upstream =
https://github.com/purescript/package-sets/releases/download/psc-0.13.5-20191215/packages.dhall sha256:fdc5d54cd54213000100fbc13c90dce01668a73fe528d8662430558df3411bee
let overrides = {=}
let additions =
{ stbx-core = ./stbx-core/spago.dhall as Location
, stbx-client-rest = ./stbx-client-rest/spago.dhall as Location
, stbx-example-data = ./stbx-example-data/spago.dhall as Location
, stbx-lang = ./stbx-lang/spago.dhall as Location
, stbx-protocol = ./stbx-protocol/spago.dhall as Location
, stbx-service-rest = ./stbx-service-rest/spago.dhall as Location
, stbx-store = ./stbx-store/spago.dhall as Location
, studio = ./studio/spago.dhall as Location
, studio-common = ./studio-common/spago.dhall as Location
, vec = ./vec/spago.dhall as Location
, halogen-diagram-editor = ./halogen-diagram-editor/spago.dhall as Location
, halogen-grid-kit = ./halogen-grid-kit/spago.dhall as Location
, halogen-kdmoncat = ./halogen-kdmoncat/spago.dhall as Location
, kdmoncat = ./kdmoncat/spago.dhall as Location
, halogen-petrinet-editor = ./halogen-petrinet-editor/spago.dhall as Location
, halogen-tree-menu = ./halogen-tree-menu/spago.dhall as Location
, pnpro = ./pnpro/spago.dhall as Location
, halogen-svg =
{ dependencies = [ "prelude", "halogen", "strings", "web-uievents", "effect" ]
, repo = "https://github.com/statebox/purescript-halogen-svg.git"
, version = "d0a4cbc79b5513296cb746576824dce967aedbab"
}
, express =
{ dependencies =
[ "aff"
, "effect"
, "console"
, "foreign"
, "foreign-generic"
, "node-http"
, "psci-support"
, "test-unit"
]
, repo = "https://github.com/nkly/purescript-express.git"
, version = "v0.8.0"
}
}
in upstream // overrides // additions