Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jhbertra committed Oct 29, 2021
1 parent c793a71 commit 0cb5385
Show file tree
Hide file tree
Showing 2 changed files with 142 additions and 46 deletions.
180 changes: 138 additions & 42 deletions packages.dhall
Original file line number Diff line number Diff line change
@@ -1,58 +1,154 @@
let upstream =
https://github.com/purescript/package-sets/releases/download/psc-0.14.4-20211005/packages.dhall sha256:2ec351f17be14b3f6421fbba36f4f01d1681e5c7f46e0c981465c4cf222de5be
https://github.com/purescript/package-sets/releases/download/psc-0.14.4-20211028/packages.dhall sha256:df6486e7fad6dbe724c4e2ee5eac65454843dce1f6e10dc35e0b1a8aa9720b26

let overrides = {=}

let additions =
{ markdown =
{ markdown =
{ dependencies =
[ "arrays"
, "assert"
, "bifunctors"
, "console"
, "const"
, "control"
, "datetime"
, "effect"
, "either"
, "enums"
, "foldable-traversable"
, "functors"
, "identity"
, "integers"
, "lists"
, "maybe"
, "newtype"
, "parsing"
, "partial"
, "precise"
, "prelude"
, "psci-support"
, "strings"
, "tuples"
, "unfoldable"
, "unicode"
, "validation"
]
[ "arrays"
, "assert"
, "bifunctors"
, "console"
, "const"
, "control"
, "datetime"
, "effect"
, "either"
, "enums"
, "foldable-traversable"
, "functors"
, "identity"
, "integers"
, "lists"
, "maybe"
, "newtype"
, "parsing"
, "partial"
, "precise"
, "prelude"
, "psci-support"
, "strings"
, "tuples"
, "unfoldable"
, "unicode"
, "validation"
]
, repo = "https://github.com/input-output-hk/purescript-markdown"
, version = "022d8afd0d9e0ef8114da9e9ef5a67d9ffc86a29"
}
, servant-support =
, servant-support =
{ dependencies =
[ "affjax"
, "argonaut-codecs"
, "argonaut-core"
, "prelude"
, "psci-support"
]
[ "affjax"
, "argonaut-codecs"
, "argonaut-core"
, "prelude"
, "psci-support"
]
, repo = "https://github.com/input-output-hk/purescript-servant-support"
, version = "93ea0fa97d0ba04e8d408bbba51749a92d6477f5"
}
, json-helpers =
{ dependencies = [] : List Text
, repo = "https://github.com/input-output-hk/purescript-bridge-json-helpers.git"
, version = "16de087fde6e2d07e6bdae51383131ab81efa82d"
, json-helpers =
{ dependencies =
[ "aff"
, "argonaut-codecs"
, "argonaut-core"
, "arrays"
, "bifunctors"
, "contravariant"
, "control"
, "effect"
, "either"
, "enums"
, "foreign-object"
, "maybe"
, "newtype"
, "ordered-collections"
, "prelude"
, "profunctor"
, "psci-support"
, "quickcheck"
, "record"
, "spec"
, "spec-quickcheck"
, "transformers"
, "tuples"
, "typelevel-prelude"
]
, repo =
"https://github.com/input-output-hk/purescript-bridge-json-helpers"
, version = "895db00f2fe97ee56b866bf1582b303d029c216a"
}
, web-common =
{ dependencies =
[ "aff"
, "aff-promise"
, "affjax"
, "argonaut-codecs"
, "argonaut-core"
, "arrays"
, "avar"
, "bifunctors"
, "bigints"
, "concurrent-queues"
, "console"
, "control"
, "coroutines"
, "datetime"
, "debug"
, "dom-indexed"
, "effect"
, "either"
, "enums"
, "exceptions"
, "filterable"
, "foldable-traversable"
, "foreign"
, "foreign-object"
, "free"
, "freeap"
, "freet"
, "functions"
, "gen"
, "halogen"
, "halogen-subscriptions"
, "identity"
, "integers"
, "json-helpers"
, "lists"
, "markdown"
, "maybe"
, "newtype"
, "nonempty"
, "nullable"
, "ordered-collections"
, "parallel"
, "prelude"
, "profunctor"
, "profunctor-lenses"
, "psci-support"
, "quickcheck"
, "rationals"
, "servant-support"
, "spec"
, "spec-quickcheck"
, "strings"
, "tailrec"
, "transformers"
, "tuples"
, "undefinable"
, "unfoldable"
, "unsafe-coerce"
, "uuid"
, "web-dom"
, "web-events"
, "web-html"
, "web-socket"
, "web-uievents"
]
, repo = "https://github.com/input-output-hk/purescript-web-common"
, version = "v1.0.0"
}
}
}

in upstream // overrides // additions
8 changes: 4 additions & 4 deletions spago-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -607,11 +607,11 @@ let

"json-helpers" = pkgs.stdenv.mkDerivation {
name = "json-helpers";
version = "16de087fde6e2d07e6bdae51383131ab81efa82d";
version = "895db00f2fe97ee56b866bf1582b303d029c216a";
src = pkgs.fetchgit {
url = "https://github.com/input-output-hk/purescript-bridge-json-helpers.git";
rev = "16de087fde6e2d07e6bdae51383131ab81efa82d";
sha256 = "1kqvhpq23cqz4gbdix0gjfyy9n5rb1hky1vrcxk221izqdnfiqq5";
url = "https://github.com/input-output-hk/purescript-bridge-json-helpers";
rev = "895db00f2fe97ee56b866bf1582b303d029c216a";
sha256 = "0jwhv9a4xhc65hxas8d00g6ax10q3w4xvlm8bp3dl1p6vav98988";
};
phases = "installPhase";
installPhase = "ln -s $src $out";
Expand Down

0 comments on commit 0cb5385

Please sign in to comment.