From 466fd1439fe3cdcffd96a77eafdd1955389a2e55 Mon Sep 17 00:00:00 2001 From: arcnmx Date: Sat, 8 Oct 2022 12:18:11 -0700 Subject: [PATCH] check-meta.nix: fix `checkMetaRecursively` option In specific cases, combining the `checkMeta` and `checkMetaRecursively` config options would result in `error: infinite recursion encountered` fixes #193296 --- pkgs/stdenv/generic/check-meta.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/stdenv/generic/check-meta.nix b/pkgs/stdenv/generic/check-meta.nix index 7b06692ac8ce..9cf75ecb8c6b 100644 --- a/pkgs/stdenv/generic/check-meta.nix +++ b/pkgs/stdenv/generic/check-meta.nix @@ -298,7 +298,7 @@ let executables = listOf str; outputsToInstall = listOf str; position = str; - available = bool; + available = unspecified; isBuildPythonPackage = platforms; schedulingPriority = int; isFcitxEngine = bool;