forked from ccap/purescript-ccap-codegen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackages.dhall
More file actions
47 lines (44 loc) · 1.3 KB
/
packages.dhall
File metadata and controls
47 lines (44 loc) · 1.3 KB
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
let upstream =
https://github.com/purescript/package-sets/releases/download/psc-0.13.8/packages.dhall sha256:0e95ec11604dc8afc1b129c4d405dcc17290ce56d7d0665a0ff15617e32bbf03
let overrides = {=}
let additions =
{ boxes =
{ dependencies =
[ "profunctor", "prelude", "stringutils", "generics-rep", "strings" ]
, repo = "https://github.com/cdepillabout/purescript-boxes.git"
, version = "v2.0.1"
}
, postgresql-client =
{ dependencies =
[ "aff"
, "argonaut"
, "arrays"
, "assert"
, "bifunctors"
, "bytestrings"
, "console"
, "datetime"
, "decimals"
, "effect"
, "either"
, "exceptions"
, "foldable-traversable"
, "foreign"
, "foreign-generic"
, "foreign-object"
, "js-date"
, "lists"
, "maybe"
, "newtype"
, "nullable"
, "prelude"
, "psci-support"
, "test-unit"
, "transformers"
, "tuples"
]
, repo = "https://github.com/pbrant/purescript-postgresql-client.git"
, version = "7188cd732eb7981910915fb5e8ab8b158abda95b"
}
}
in upstream // overrides // additions