Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/enkerewpo/gleam-pkg
tool script for installing Gleam CLI programs right inside your OS
https://github.com/enkerewpo/gleam-pkg
cli gleam-lang package-manager
Last synced: about 1 month ago
JSON representation
tool script for installing Gleam CLI programs right inside your OS
- Host: GitHub
- URL: https://github.com/enkerewpo/gleam-pkg
- Owner: enkerewpo
- License: apache-2.0
- Created: 2024-12-23T11:35:32.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-12-24T01:55:14.000Z (about 1 month ago)
- Last Synced: 2024-12-24T02:43:14.357Z (about 1 month ago)
- Topics: cli, gleam-lang, package-manager
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gleam-pkg
gleam package manager for installing Gleam CLI programs right inside your OS
to compile:
```bash
git clone https://github.com/enkerewpo/gleam-pkg
git submodule update --init --recursive
cargo build
```
## usage example```bash
# gleam-pkg install gleewhois # this will be supported when we can install gleam-pkg and run it in shell
cargo run -- install gleewhois
# source ~/.bashrc or ~/.zshrc because first time gleam-pkg will ask
# whether you want to add ~/.gleam-pkgs to PATH for using the gleam app in your shell
gleewhois --help
```## some design ideas
- support install from github or hex.pm
- workspace under `$home/.gleam_pkgs`
- package metadata management for installation and uninstallation## repos of gleam cli apps
- [gleamfonts](https://github.com/massix/gleamfonts) (not in hex)
- [ormlette](https://github.com/ashercn97/ormlette) [hex](https://hex.pm/packages/ormlette)
- [gleewhois](https://github.com/kjartanhr/gleewhois) [hex](https://hex.pm/packages/gleewhois)wheatfox 2024