From ca5441d93e5ef2258891b2ed02f807d4c5a374fa Mon Sep 17 00:00:00 2001 From: Rebecca Turner Date: Tue, 19 Mar 2024 13:34:54 -0700 Subject: [PATCH] Don't include version numbers in check names This makes it impossible to mark them required --- nix/packages/make-checks.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/packages/make-checks.nix b/nix/packages/make-checks.nix index 2f18818..a65c1b7 100644 --- a/nix/packages/make-checks.nix +++ b/nix/packages/make-checks.nix @@ -9,7 +9,7 @@ lib.pipe pkgs [ check: lib.nameValuePair # The Nix CLI doesn't like attribute names that contain dots. - (builtins.replaceStrings ["."] ["-"] check.name) + (builtins.replaceStrings ["."] ["-"] check.pname) check )) ]