Update to use helpers.legacyPackages instead of helpers.packages

Builder functions have been moved to legacyPackages in fudo-nix-helpers
to satisfy nix flake check requirements.
This commit is contained in:
2026-02-02 08:58:36 -08:00
parent ecbd4942ad
commit d6f59437c2

View File

@@ -23,7 +23,7 @@
};
in {
packages = {
wallfly = helpers.packages."${system}".mkClojureBin {
wallfly = helpers.legacyPackages."${system}".mkClojureBin {
projectSrc = ./.;
name = "org.fudo/wallfly";
primaryNamespace = "wallfly.core";
@@ -37,7 +37,7 @@
devShells = rec {
default = updateDeps;
updateDeps = pkgs.mkShell {
buildInputs = with helpers.packages."${system}";
buildInputs = with helpers.legacyPackages."${system}";
[ (updateClojureDeps cljLibs) ];
};
};