From 55e0c7369591fd9206df38ddb7d4b0bf9d8d41c2 Mon Sep 17 00:00:00 2001 From: Qyriad Date: Sun, 7 Apr 2024 16:50:34 -0600 Subject: [PATCH] flake: fix rl-next and rl-next-dev checks after 32eaa8a29 (fix nix flake check) follow-up to 32eaa8a29[1] "flake: move release note checks to hydraJobs", this commit fixes a load-bearing typo for`checks.rl-next` and `checks.rl-next-dev`. [1]: 32eaa8a2910793538deab31f85534faf7e722ef7 Change-Id: I9383ed21f7eccc337c0c2f65525418b735a94a1d --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 647d15b4a..f1669777c 100644 --- a/flake.nix +++ b/flake.nix @@ -362,8 +362,8 @@ binaryTarball = self.hydraJobs.binaryTarball.${system}; perlBindings = self.hydraJobs.perlBindings.${system}; nixpkgsLibTests = self.hydraJobs.tests.nixpkgsLibTests.${system}; - rl-next = self.hydraJobs.tests.nixpkgsLibTests.${system}.user; - rl-next-dev = self.hydraJobs.tests.nixpkgsLibTests.${system}.dev; + rl-next = self.hydraJobs.rl-next.${system}.user; + rl-next-dev = self.hydraJobs.rl-next.${system}.dev; pre-commit = self.hydraJobs.pre-commit.${system}; } // (lib.optionalAttrs (builtins.elem system linux64BitSystems)) { dockerImage = self.hydraJobs.dockerImage.${system};