https://github.com/nonbili/package-sets
PureScript packages made @nonbili
https://github.com/nonbili/package-sets
package-set purescript spago
Last synced: 4 months ago
JSON representation
PureScript packages made @nonbili
- Host: GitHub
- URL: https://github.com/nonbili/package-sets
- Owner: nonbili
- License: bsd-3-clause
- Created: 2020-02-24T00:25:26.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-09-06T03:27:32.000Z (almost 6 years ago)
- Last Synced: 2025-10-06T08:43:03.615Z (9 months ago)
- Topics: package-set, purescript, spago
- Language: Dhall
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Nonbili package-sets
A collection of Nonbili PureScript packages.
## Included packages
| Name | Latest release |
| --- | --- |
| css-properties | [](https://github.com/nonbili/purescript-css-properties/releases) |
| css-validate | [](https://github.com/nonbili/purescript-css-validate/releases) |
| halogen-color-picker | [](https://github.com/nonbili/purescript-halogen-color-picker/releases) |
| halogen-nselect | [](https://github.com/nonbili/purescript-halogen-nselect/releases) |
| jest | [](https://github.com/nonbili/purescript-jest/releases) |
| lit-html | [](https://github.com/nonbili/purescript-lit-html/releases) |
| markdown-it | [](https://github.com/nonbili/purescript-markdown-it/releases) |
| markdown-it-halogen | [](https://github.com/nonbili/purescript-markdown-it-halogen/releases) |
| msgpack-msgpack | [](https://github.com/nonbili/purescript-msgpack-msgpack/releases) |
| node-fs-extra | [](https://github.com/nonbili/purescript-node-fs-extra/releases) |
| nonbili | [](https://github.com/nonbili/purescript-nonbili/releases) |
| nonbili-dom | [](https://github.com/nonbili/purescript-nonbili-dom/releases) |
| nonbili-halogen | [](https://github.com/nonbili/purescript-nonbili-halogen/releases) |
| nonbili-nodejs | [](https://github.com/nonbili/purescript-nonbili-nodejs/releases) |
| nonbili-postgres | [](https://github.com/nonbili/purescript-nonbili-postgres/releases) |
| tauri | [](https://github.com/nonbili/purescript-tauri/releases) |
| template-literals | [](https://github.com/nonbili/purescript-template-literals/releases) |
## Usage
Include Nonbili package-sets in your local `packages.dhall`, `let nonbili = https://github.com/nonbili/package-sets/releases/download//packages.dhall`, remember to use the latest release version.
## Example
Example `package.dhall`
```dhall
let upstream =
https://github.com/purescript/package-sets/releases/download/psc-0.13.6-20200127/packages.dhall sha256:06a623f48c49ea1c7675fdf47f81ddb02ae274558e29f511efae1df99ea92fb8
let nonbili =
https://github.com/nonbili/package-sets/releases/download/v0.5/packages.dhall sha256:b6e243c12beb4c2b122f9ec23a5a1bd6910d92e382e0ff9ccea2af99560ce499
let overrides = {=}
let additions = {=}
in upstream // nonbili // overrides // additions
```
Then include Nonbili packages in your local `spago.dhall`
```dhall
{ name = "package-name"
, dependencies =
[ "css-properties"
, "css-validate"
, "halogen-color-picker"
, "halogen-nselect"
, "jest"
, "markdown-it"
, "msgpack-msgpack"
, "node-fs-extra"
, "nonbili-dom"
, "nonbili-halogen"
, "nonbili-nodejs"
, "nonbili-postgres"
, "template-literals"
]
, packages = ./packages.dhall
, sources = [ "src/**/*.purs" ]
}
```