Skip to content

Commit

Permalink
Change the flake attribute name to match project name
Browse files Browse the repository at this point in the history
The plural `s` in `nix-fast-builds` is only used in the flake output name AFAICT. Lets make this consistent.
  • Loading branch information
andir authored and mergify[bot] committed Oct 4, 2023
1 parent 2fe410b commit e7cd616
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 @@ -24,15 +24,15 @@
imports = [ ./treefmt.nix ];
systems = officialPlatforms ++ [ "riscv64-linux" "i686-linux" ];
perSystem = { pkgs, self', ... }: {
packages.nix-fast-builds = pkgs.callPackage ./default.nix {
packages.nix-fast-build = pkgs.callPackage ./default.nix {
# we don't want to compile ghc otherwise
nix-output-monitor =
if lib.elem pkgs.hostPlatform.system officialPlatforms then
pkgs.nix-output-monitor
else
null;
};
packages.default = self'.packages.nix-fast-builds;
packages.default = self'.packages.nix-fast-build;

checks =
let
Expand Down

0 comments on commit e7cd616

Please sign in to comment.