Installation
At the current state of this project, I feel like it is not worthy to be included in package managers, so you will have to build the binaries yourself. Unless you use NixOS with flakes.
NixOS
- Add this GitHub repository to the inputs of your flake.nix:
gitzeug.url = "github:thaemisch/gitzeug";
- Add the package to your configuration.nix:
environment.systemPackages = with pkgs; [ ... inputs.gitzeug.packages.${pkgs.system}.gitzeug ];
Binaries
- Ensure you have Rust installed.
- Clone this repository:
git clone https://github.com/thaemisch/gitzeug.git
- Navigate to the project directory:
cd gitzeug
- Build the project:
cargo build --release
- Add the binary to your PATH for easy access:
export PATH=$PATH:$(pwd)/target/release