nix-2.23.0pre20240501_5279e1f
github-actions
released this
05 May 00:55
·
1 commit
to master
since this release
Release Information
- Release name:
nix-2.23.0pre20240501_5279e1f
- Hydra eval: https://hydra.nixos.org/eval/1806025
Usage
Linux + macOS Systems
sh <(curl -L https://github.com/nix-community/nix-unstable-installer/releases/download/nix-2.23.0pre20240501_5279e1f/install)
GitHub Actions
Example using Flakes:
name: "Example Flake Workflow"
on:
pull_request:
push:
jobs:
tests:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: cachix/install-nix-action@v26
with:
install_url: https://github.com/nix-community/nix-unstable-installer/releases/download/nix-2.23.0pre20240501_5279e1f/install
- uses: actions/checkout@v3
# Run the general flake checks
- run: nix flake check
# Verify that the main program builds
- run: nix shell -c echo OK
Docker / Podman
docker run --rm -ti ghcr.io/nix-community/nix-unstable-installer/nix:2.23.0pre20240501_5279e1f