-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackages.dhall
30 lines (26 loc) · 980 Bytes
/
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
let mkPackage =
https://raw.githubusercontent.com/purescript/package-sets/psc-0.13.2/src/mkPackage.dhall sha256:0b197efa1d397ace6eb46b243ff2d73a3da5638d8d0ac8473e8e4a8fc528cf57
let upstream =
https://raw.githubusercontent.com/purescript/package-sets/psc-0.13.2/src/packages.dhall sha256:906af79ba3aec7f429b107fd8d12e8a29426db8229d228c6f992b58151e2308e
let overrides =
{ foreign =
upstream.foreign
// { version = "ad52524676eb2243974010ceebe2cde7a8b8bea7" }
}
let additions =
{ corefn =
mkPackage
[ "console"
, "foreign-generic"
, "errors"
, "strings"
, "newtype"
, "tuples"
, "foldable-traversable"
, "profunctor"
, "aff"
]
"https://github.com/felixschl/purescript-corefn.git"
"eee6e976e97765966eceb34d085a80438f32cdb2"
}
in upstream // overrides // additions