zed-editor: add withGLES to passthru.tests

This commit is contained in:
WeetHet
2025-01-19 23:17:48 +02:00
parent 70ea2a504c
commit e28b761703
+9 -5
View File
@@ -309,12 +309,16 @@ rustPlatform.buildRustPackage rec {
};
fhs = fhs { };
fhsWithPackages = f: fhs { additionalPkgs = f; };
tests = {
remoteServerVersion = testers.testVersion {
package = zed-editor.remote_server;
command = "zed-remote-server-stable-${version} version";
tests =
{
remoteServerVersion = testers.testVersion {
package = zed-editor.remote_server;
command = "zed-remote-server-stable-${version} version";
};
}
// lib.optionalAttrs stdenv.hostPlatform.isLinux {
withGles = zed-editor.override { withGLES = true; };
};
};
};
meta = {