From 57d31b8c5414fef3a22121a1e41d3c181f096143 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Mon, 22 Apr 2024 07:31:53 +0100 Subject: [PATCH] redlib.tests: fix eval Without the change the eval fails as: $ nix build --no-link -f. redlib.tests error: attribute 'redlib' missing at pkgs/by-name/re/redlib/package.nix:50:26: 49| passthru.tests = { 50| inherit (nixosTests) redlib; | ^ 51| }; Did you mean redis? --- nixos/tests/all-tests.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix index 232f10d7c24d..aedc8f78ba20 100644 --- a/nixos/tests/all-tests.nix +++ b/nixos/tests/all-tests.nix @@ -782,6 +782,7 @@ in { rasdaemon = handleTest ./rasdaemon.nix {}; readarr = handleTest ./readarr.nix {}; redis = handleTest ./redis.nix {}; + redlib = handleTest ./redlib.nix {}; redmine = handleTest ./redmine.nix {}; restartByActivationScript = handleTest ./restart-by-activation-script.nix {}; restic-rest-server = handleTest ./restic-rest-server.nix {};