This Nix channel provides packages for working with Avalanche blockchain tools and utilities.
- avalanche-cli: Official command line interface for Avalanche
- avalanchego: The official Avalanche node implementation
- subnet-evm: EVM package for creating Avalanche subnets
Add the channel:
sudo nix-channel --add https://github.com/build9000ai/avalanche-nix/archive/master.tar.gz avalanche
sudo nix-channel --update
Install packages:
nix-env -iA avalanche.avalanche-cli
nix-env -iA avalanche.avalanchego
NixOS configuration:
{ config, pkgs, ... }:
{
nixpkgs.config.packageOverrides = pkgs: {
avalanche = import <avalanche> { inherit pkgs; };
};
}
Contributions are welcome! Please feel free to submit issues and pull requests.
This project is licensed under the MIT License - see the LICENSE file for details.