Skip to content

nix-2.20.0pre20231220_75e10e4

Compare
Choose a tag to compare
@github-actions github-actions released this 03 Jan 02:04
· 4 commits to master since this release
1d02e64

Release Information

Usage

Linux + macOS Systems

sh <(curl -L https://github.com/nix-community/nix-unstable-installer/releases/download/nix-2.20.0pre20231220_75e10e4/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@v24
        with:
          install_url: https://github.com/nix-community/nix-unstable-installer/releases/download/nix-2.20.0pre20231220_75e10e4/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.20.0pre20231220_75e10e4