Skip to content

Commit

Permalink
Fix nix flake apps and checks
Browse files Browse the repository at this point in the history
  • Loading branch information
errfrom committed Aug 20, 2024
1 parent a471c71 commit 1266638
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@
let
pkgs = nixpkgsFor system;
in
(psProjectFor pkgs).apps // {
(psProjectFor pkgs system).apps // {
ctl-runtime = pkgs.launchCtlRuntime { };
ctl-runtime-blockfrost = pkgs.launchCtlRuntime { blockfrost.enable = true; };
default = self.apps.${system}.ctl-runtime;
Expand All @@ -324,7 +324,7 @@
checks = perSystem (system:
let
pkgs = nixpkgsFor system;
psProject = psProjectFor pkgs;
psProject = psProjectFor pkgs system;
in
psProject.checks
// {
Expand Down

0 comments on commit 1266638

Please sign in to comment.