Skip to content

Commit

Permalink
Fix callPackage invocation
Browse files Browse the repository at this point in the history
  • Loading branch information
jonringer authored and manveru committed Jan 12, 2021
1 parent c819ba6 commit 5262875
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/mk-hashi-stack.nix
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,11 @@ in
lib.makeScope pkgs.newScope (self: with self; {
inherit rootDir;

nomadJobs = recursiveCallPackage (rootDir + "/jobs") callPackage;
nomadJobs = recursiveCallPackage (rootDir + "/jobs") pkgs.callPackage;

dockerImages =
let
images = recursiveCallPackage (rootDir + "/docker") callPackages;
images = recursiveCallPackage (rootDir + "/docker") pkgs.callPackages;
in lib.mapAttrs imageAttrToCommands images;

push-docker-images = callPackage push-docker-images { };
Expand Down

0 comments on commit 5262875

Please sign in to comment.