{"id":13537380,"url":"https://github.com/bash-bastion/basalt","last_synced_at":"2025-08-13T08:32:28.023Z","repository":{"id":41273334,"uuid":"380455883","full_name":"bash-bastion/basalt","owner":"bash-bastion","description":"The rock-solid Bash package manager.","archived":false,"fork":false,"pushed_at":"2024-01-13T09:36:44.000Z","size":4408,"stargazers_count":69,"open_issues_count":15,"forks_count":1,"subscribers_count":5,"default_branch":"main","last_synced_at":"2024-11-03T02:32:53.001Z","etag":null,"topics":["basalt","bash","bash-script","fish","package-management","package-manager","script","scripts","shell","shell-script","zsh"],"latest_commit_sha":null,"homepage":"https://bash-bastion.github.io/basalt/","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bash-bastion.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":"docs/support.md","governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-06-26T08:45:23.000Z","updated_at":"2024-10-24T07:11:00.000Z","dependencies_parsed_at":"2024-05-10T08:31:39.171Z","dependency_job_id":null,"html_url":"https://github.com/bash-bastion/basalt","commit_stats":null,"previous_names":["bash-bastion/basalt"],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bash-bastion%2Fbasalt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bash-bastion%2Fbasalt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bash-bastion%2Fbasalt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bash-bastion%2Fbasalt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bash-bastion","download_url":"https://codeload.github.com/bash-bastion/basalt/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":229749194,"owners_count":18118325,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["basalt","bash","bash-script","fish","package-management","package-manager","script","scripts","shell","shell-script","zsh"],"created_at":"2024-08-01T09:00:58.308Z","updated_at":"2024-12-14T20:15:39.237Z","avatar_url":"https://github.com/bash-bastion.png","language":"Shell","readme":"# basalt\n\nThe rock-solid Bash package manager\n\nSTATUS: BETA (expect breaking changes until a post-beta release)\n\n---\n\n`basalt` is a rewritten fork of [basher](https://github.com/basherpm/basher) that adds a _ton_ of new functionality. It makes it significantly easier to install Bash, Zsh, etc. projects to your computer. Often, these projects/scripts are _not_ available through official `apt`, `DNF`, `pacman` repositories, or even from unofficial sources like third-party apt repositories or the [AUR](https://aur.archlinux.org)\n\n\u003c!--alex ignore simple--\u003e\n\nLet's say you want to install [rupa/z](https://github.com/rupa/z), [tj/git-extras](https://github.com/tj/git-extras), [aristocratos/bashtop](https://github.com/aristocratos/bashtop), and [JosefZIla/bash2048](https://github.com/JosefZIla/bash2048). Simply run the following\n\n```sh\n$ basalt global add rupa/z tj/git-extras aristocratos/bashtop JosefZIla/bash2048\n```\n\nThis symlinks all executable scripts to a common directory. It does this for completion files and manpages as well\n\n```sh\n$ exa -l --no-permissions --no-filesize --no-user ~/.local/share/basalt/global/bin/\nbash2048.sh -\u003e .../.local/share/basalt/store/packages/github.com/JosefZIla/bash2048@.../bash2048.sh\nbashtop -\u003e .../.local/share/basalt/store/packages/github.com/aristocratos/bashtop@.../bashtop\ngit-alias -\u003e .../.local/share/basalt/store/packages/github.com/tj/git-extras@.../bin/git-alias\ngit-archive-file -\u003e .../.local/share/basalt/store/packages/github.com/tj/git-extras@.../bin/git-archive-file\n...\n```\n\nTo be able to access the binaries, completion files, and manpages in your shell, add a two-liner in your shell configuration. The [installation script](./scripts/install.sh) already does this for you\n\n```sh\n# ~/.bashrc\nexport PATH=\"${XDG_DATA_HOME:-$HOME/.local/share}/basalt/source/bin:$PATH\"\neval \"$(basalt global init bash)\" # zsh and fish are also supported\n```\n\n**_NOTE_**: Basalt is currently BETA. There are known bugs that will be fixed. I _highly_ recommended to wait until `v1.0.0` before trying anything out\n\nSee [Installation](./docs/tutorials/installation.md) and [Getting Started](./docs/tutorials/getting-started.md) for more details\n\n## Features\n\n- Install most Bash/Zsh/Fish projects out of the box\n- Local Bash packages (Awk/Zsh/Fish/Ksh,Powershell coming later)\n- Custom builtins for Bash packages (not yet implemented)\n- Robust (lockfile usage, transaction rollback (not yet implemented), great error handling)\n- Bundle (bundle a project and its dependencies into a single file) (not yet implemented)\n\n## Ecosystem\n\nBecause of Basalt, I've been able to make\n\n- [bake](https://github.com/hyperupcall/bake) - A Bash-based Make alternative\n- [woof](https://github.com/hyperupcall/woof) - The version manager to end all version managers\n- [bash-object](https://github.com/hyperupcall/bash-object) - Manipulate heterogenous data hierarchies in Bash\n- [bash-term](https://github.com/hyperupcall/bash-term) - Bash library for terminal escape sequences.\n\nSee the full list [awesome-basalt](https://github.com/hyperupcall/awesome-basalt) and at the GitHub organization [bash-bastion](https://github.com/bash-bastion).\n\n## License\n\nOriginal code is licensed under `MIT` by Juan Ibiapina. Modifications are licensed under `BSD-3-Clause` by Edwin Kofler\n","funding_links":[],"categories":["bash","Package Managers and Tools"],"sub_categories":["Reusable Things"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbash-bastion%2Fbasalt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbash-bastion%2Fbasalt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbash-bastion%2Fbasalt/lists"}