Skip to content

Latest commit

 

History

History
63 lines (44 loc) · 1.37 KB

File metadata and controls

63 lines (44 loc) · 1.37 KB

Homebrew Tap for Quickemu

This is the official Homebrew tap for quickemu.

Installation

brew tap quickemu-project/quickemu
brew install quickemu

Available Formulae

Formula Description
quickemu Quickly create and run optimised Windows, macOS and Linux virtual machines

Usage with nix-homebrew

This tap follows the standard Homebrew naming convention (homebrew-<name>) and works with nix-homebrew for declarative Homebrew management on NixOS/nix-darwin.

Add the tap to your flake inputs:

{
  inputs = {
    # ... your other inputs
    homebrew-quickemu = {
      url = "github:quickemu-project/homebrew-quickemu";
      flake = false;
    };
  };
}

Then configure it in your nix-homebrew settings:

nix-homebrew = {
  taps = {
    "quickemu-project/quickemu" = inputs.homebrew-quickemu;
  };
};

Updating

Quickemu uses a dynamic version scheme that automatically fetches the latest release. To update:

brew update
brew upgrade quickemu

Issues

For issues with the Formula itself, please open an issue in this repository.

For issues with quickemu, please report them to the main quickemu repository.

Licence

MIT