Skip to content

Latest commit

 

History

History
69 lines (49 loc) · 1.29 KB

File metadata and controls

69 lines (49 loc) · 1.29 KB

mise-hx

hx plugin for mise.

hx is a fast, opinionated, batteries-included toolchain CLI for Haskell.

Installation

mise plugin install hx https://github.com/raskell-io/mise-hx.git
mise install hx@latest
mise use hx@latest

Or add to your mise.toml:

[tools]
hx = "latest"

Then run:

mise install

Usage

# List all available versions
mise ls-remote hx

# Install a specific version
mise install hx@0.4.0

# Use globally
mise use -g hx@0.4.0

# Use in current directory (creates mise.toml)
mise use hx@0.4.0

Supported Platforms

Platform Architectures
macOS Apple Silicon (aarch64), Intel (x86_64)
Linux x86_64, aarch64
Windows x86_64

What is hx?

hx wraps existing Haskell tools (GHC, Cabal, GHCup, HLS) in a fast, unified interface:

hx init myapp        # Create new project
hx build             # Build
hx test              # Run tests
hx fmt               # Format code
hx add text          # Add dependency
hx doctor            # Diagnose issues

Links