From a6addb6b20fcf22bdb751077a2e3fca69c0c425c Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Fri, 29 Dec 2023 06:59:51 +0000 Subject: [PATCH] guacamole-client: fix `tests` attribute eval Without the change `tests` eval fails as: $ nix build --no-link -f. guacamole-client.tests error: attribute 'guacamole-client' missing `guacamole-client` test was removed in a4e7f5011d86f966d "nixos/tests: remove reference to non-existent test" --- pkgs/servers/guacamole-client/default.nix | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pkgs/servers/guacamole-client/default.nix b/pkgs/servers/guacamole-client/default.nix index db10f2851df2..23c56df62a46 100644 --- a/pkgs/servers/guacamole-client/default.nix +++ b/pkgs/servers/guacamole-client/default.nix @@ -1,7 +1,6 @@ { lib , stdenvNoCC , fetchurl -, nixosTests }: stdenvNoCC.mkDerivation (finalAttrs: { @@ -25,10 +24,6 @@ stdenvNoCC.mkDerivation (finalAttrs: { runHook postInstall ''; - passthru.tests = { - inherit (nixosTests) guacamole-client; - }; - meta = { description = "Clientless remote desktop gateway"; homepage = "https://guacamole.apache.org/";