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:
parent
b1040a124f
commit
ade8154547
@ -17,7 +17,7 @@
|
||||
outputs = { self, nixpkgs, utils, helpers, notifierClj, ... }:
|
||||
utils.lib.eachDefaultSystem (system:
|
||||
let
|
||||
inherit (helpers.packages."${system}") mkClojureBin;
|
||||
inherit (helpers.legacyPackages."${system}") mkClojureBin;
|
||||
pkgs = nixpkgs.legacyPackages."${system}";
|
||||
cljLibs = {
|
||||
"org.fudo/notifier" = "${notifierClj.packages."${system}".notifier}";
|
||||
@ -37,7 +37,7 @@
|
||||
devShells = rec {
|
||||
default = updateDeps;
|
||||
updateDeps = pkgs.mkShell {
|
||||
buildInputs = with helpers.packages."${system}";
|
||||
buildInputs = with helpers.legacyPackages."${system}";
|
||||
[ (updateClojureDeps cljLibs) ];
|
||||
};
|
||||
tattler = pkgs.mkShell {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user