beb4621f4b
* Update project setup to use spago. * Add license and repo info to spago.dhall * Fix check.yaml * Remove unused dependencies * Remove --no-install from checks.yaml * Minor cleanup * Readd nix checks * Migrate everything to spago & remove Makefile * Split nix environment install from build in workflow * Fix NIX_PATH * Make build step of workflow build everything * Fix github action Co-authored-by: sigma-andex <sigma.andex@pm.me>
32 lines
555 B
Plaintext
32 lines
555 B
Plaintext
{ name = "httpure"
|
|
, dependencies =
|
|
[ "aff"
|
|
, "arrays"
|
|
, "bifunctors"
|
|
, "console"
|
|
, "effect"
|
|
, "either"
|
|
, "foldable-traversable"
|
|
, "foreign-object"
|
|
, "js-uri"
|
|
, "maybe"
|
|
, "newtype"
|
|
, "node-buffer"
|
|
, "node-fs"
|
|
, "node-http"
|
|
, "node-streams"
|
|
, "options"
|
|
, "ordered-collections"
|
|
, "prelude"
|
|
, "psci-support"
|
|
, "refs"
|
|
, "strings"
|
|
, "tuples"
|
|
, "type-equality"
|
|
]
|
|
, packages = ./packages.dhall
|
|
, sources = [ "src/**/*.purs" ]
|
|
, license = "MIT"
|
|
, repository = "https://github.com/cprussin/purescript-httpure.git"
|
|
}
|