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 a4e7f5011d
"nixos/tests: remove reference to non-existent test"
This commit is contained in:
Sergei Trofimovich 2023-12-29 06:59:51 +00:00
parent d20560a3ad
commit a6addb6b20

View file

@ -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/";