-
Notifications
You must be signed in to change notification settings - Fork 1
/
package-set.dhall
32 lines (28 loc) · 912 Bytes
/
package-set.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
let upstream = https://github.com/dfinity/vessel-package-set/releases/download/mo-0.6.7-20210818/package-set.dhall
let Package =
{ name : Text, version : Text, repo : Text, dependencies : List Text }
let
-- This is where you can add your own packages to the package-set
additions =
[] : List Package
let
{- This is where you can override existing packages in the package-set
For example, if you wanted to use version `v2.0.0` of the foo library:
let overrides = [
{ name = "foo"
, version = "v2.0.0"
, repo = "https://github.com/bar/foo"
, dependencies = [] : List Text
}
]
-}
overrides =
[
{
name = "base",
repo = "https://github.com/dfinity/motoko-base",
version = "dfx-0.8.4",
dependencies = [] : List Text
}
] : List Package
in upstream # additions # overrides