An unofficial, community-driven package repository for Void Linux.
This repository hosts software that may diverge from the strict guidelines of the official Void repositories, including patched versions, experimental software, and customized configurations.
Currently supported architectures include x86_64 and x86_64-musl.
Create a repo config file for XBPS.
echo "repository=https://voiders-community.github.io/packages" | sudo tee /etc/xbps.d/20-voiders.confUpdate your local index. XBPS will prompt you to import the repo's RSA key upon the first sync.
sudo xbps-install -SVerify that the imported key matches our official fingerprint:
Signed by Haris <plavpxl@proton.me>f4:d9:eb:bf:3c:9a:04:ae:e9:98:ac:12:7a:88:6b:06
Once registered, you can install packages as normal:
sudo xbps-install <package_name>To list all packages available in this repository:
xbps-query -i -M --repository https://voiders-community.github.io/packages -s ''We welcome and encourage contributions. Please follow the standard xbps-src packaging guidelines where possible. All packages must be tested before they are considered to be added.
For any backend changes, please use the backend tag.
The build.sh script is a wrapper for xbps-src to work with custom repos. To avoid dependency issues, it copies all srcpkgs into the submodule dir void-packages/srcpkgs before attempting builds. Reviews and improvements are very welccome!
The workflow file .github/workflows/build.yml uses a Docker image void-glibc-full from void-containers for a full build and development environment.
The workflow file .github/workflows/test.yml is almost identical to build.yml with the exception that no packages or repositories are signed/pushed. It runs on every new PR that affects the srcpkgs/ directory.
To keep this repo more open, we allow opening Pull Requests (PRs) if you don't have a built template, or even know how to create one. When opening a PR for this, use the tag template request and briefly discuss:
- Why should we add and maintain this package?
- Should it be compiled from source or download a binary pkg?
- Does it appear to be safe? (i.e., no known malicious source code or blobs)
New PRs will be checked automatically. For larges packages with long compile times, consider prefixing your PR title with [ci skip] to save runner resources.
Often times, users will create working templates and make them available on the Internet, but outdated/orphaned. These are also welcomed. In addition to the above tag, use the orphaned tag.
For other packages intended to be actively maintained, with a template made, use the tag package request.
For any Electron-based apps, use the tag electron.
For any custom Linux kernels, use the tag kernel. Note that custom kernels must work on all hardware (that is, not compiled with -march=native or similar).
A submodule of the official void-packages is used. This will be updated from upstream automatically, please do not include it in PRs.
To build a package from this repository locally:
-
Clone the repo:
git clone https://github.com/voiders-community/packages.git --recurse-submodules cd packages -
Build using the provided helper script:
./build.sh build <pkgname>
All packages are automatically built and signed via GitHub Actions.
- Push: Commits to
mastertrigger a rebuild of changed templates. - Publish: Successful builds are automatically deployed to the repository site.
This project is not officially affiliated with the Void Linux contributors, maintainers, or developers.