From e7cd61627bffd36091514c25523c868d365cf878 Mon Sep 17 00:00:00 2001 From: Andreas Rammhold Date: Tue, 3 Oct 2023 17:13:28 +0200 Subject: [PATCH] Change the flake attribute name to match project name The plural `s` in `nix-fast-builds` is only used in the flake output name AFAICT. Lets make this consistent. --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 7e5327c..743fad1 100644 --- a/flake.nix +++ b/flake.nix @@ -24,7 +24,7 @@ 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 @@ -32,7 +32,7 @@ else null; }; - packages.default = self'.packages.nix-fast-builds; + packages.default = self'.packages.nix-fast-build; checks = let