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
This commit is contained in:
Qyriad 2024-04-07 16:50:34 -06:00
parent 06e11778b5
commit 55e0c73695

View file

@ -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};