Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 409 Bytes

CHANGELOG.md

File metadata and controls

23 lines (19 loc) · 409 Bytes

Changelog for IOGX

19 Nov 2024

  • Removed now-archived nixpkgs-fmt in favor of nixfmt-classic.

    To migrate, replace:

    # shell.nix 
    { repoRoot, inputs, pkgs, lib, system }:
    lib.iogx.mkShell {
      tools.nixpkgs-fmt.enable = true;
    }
    

    With:

    # shell.nix 
    { repoRoot, inputs, pkgs, lib, system }:
    lib.iogx.mkShell {
      tools.nixfmt-classic.enable = true;
    }