-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage-set.dhall
72 lines (68 loc) · 2.1 KB
/
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
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/dfinity/vessel-package-set/releases/download/mo-0.6.21-20220215/package-set.dhall sha256:b46f30e811fe5085741be01e126629c2a55d4c3d6ebf49408fb3b4a98e37589b
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 =
[
{
name = "io",
repo = "https://github.com/aviate-labs/io.mo",
version = "v0.3.0",
dependencies = [ "base" ]
},
{
name = "rand",
repo = "https://github.com/aviate-labs/rand.mo",
version = "v0.2.2",
dependencies = [ "base" ]
},
{
name = "array",
repo = "https://github.com/aviate-labs/array.mo",
version = "v0.2.0",
dependencies = [ "base" ]
},
{
name = "crypto",
repo = "https://github.com/aviate-labs/crypto.mo",
version = "v0.2.0",
dependencies = [ "base", "encoding" ]
},
{
name = "encoding",
repo = "https://github.com/aviate-labs/encoding.mo",
version = "v0.2.1",
dependencies = ["base"]
},
{
name = "uuid",
repo = "https://github.com/aviate-labs/uuid.mo.git",
version = "v0.2.0",
dependencies = [ "base", "encoding", "io" ]
},
{ name = "asset-storage"
, repo = "https://github.com/aviate-labs/asset-storage.mo"
, version = "asset-storage-0.7.0"
, dependencies = [ "base" ]
},
{ name = "sha"
, repo = "https://github.com/aviate-labs/sha.mo"
, version = "v0.1.1"
, dependencies = [ "base", "encoding" ]
}
] : 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 =
[] : List Package
in upstream # additions # overrides