2 Welcome to your new Dhall package-set!
4 Below are instructions for how to edit this file for most use
5 cases, so that you don't need to know Dhall to use it.
7 ## Warning: Don't Move This Top-Level Comment!
9 Due to how `dhall format` currently works, this comment's
10 instructions cannot appear near corresponding sections below
11 because `dhall format` will delete the comment. However,
12 it will not delete a top-level comment like this one.
16 Most will want to do one or both of these options:
17 1. Override/Patch a package's dependency
18 2. Add a package not already in the default package set
20 This file will continue to work whether you use one or both options.
21 Instructions for each option are explained below.
23 ### Overriding/Patching a package
26 - Change a package's dependency to a newer/older release than the
27 default package set's release
28 - Use your own modified version of some dependency that may
29 include new API, changed API, removed API by
30 using your custom git repo of the library rather than
31 the package set's repo
34 Replace the overrides' "{=}" (an empty record) with the following idea
35 The "//" or "⫽" means "merge these two records and
36 when they have the same value, use the one on the right:"
37 -------------------------------
40 upstream.packageName // { updateEntity1 = "new value", updateEntity2 = "new value" }
42 upstream.packageName // { version = "v4.0.0" }
44 upstream.packageName // { repo = "https://www.example.com/path/to/new/repo.git" }
46 -------------------------------
49 -------------------------------
52 upstream.halogen // { version = "master" }
54 upstream.halogen-vdom // { version = "v4.0.0" }
56 -------------------------------
61 - Add packages that aren't already included in the default package set
64 Replace the additions' "{=}" (an empty record) with the following idea:
65 -------------------------------
73 "https://example.com/path/to/git/repo.git"
75 "tag ('v4.0.0') or branch ('master')"
83 "https://example.com/path/to/git/repo.git"
85 "tag ('v4.0.0') or branch ('master')"
89 -------------------------------
92 -------------------------------
103 , "foldable-traversable"
112 "https://github.com/hdgarrood/purescript-benchotron.git"
117 -------------------------------
122 https://github.com/purescript/package-sets/releases/download/psc-0.13.4-20191025/packages.dhall sha256:f9eb600e5c2a439c3ac9543b1f36590696342baedab2d54ae0aa03c9447ce7d4
129 [ "unsafe-coerce", "proxy" ]
131 "https://github.com/paf31/purescript-reflection.git"
137 in upstream // overrides // additions