2022-12-31 13:59:50 +00:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
|
|
|
, gitUpdater
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
|
|
|
, pkg-config
|
|
|
|
, boost
|
|
|
|
, gtest
|
|
|
|
, wayland
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "wlcs";
|
2023-07-28 10:11:37 +00:00
|
|
|
version = "1.6.0";
|
2022-12-31 13:59:50 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "MirServer";
|
|
|
|
repo = "wlcs";
|
|
|
|
rev = "v${version}";
|
2023-07-28 10:11:37 +00:00
|
|
|
hash = "sha256-+YM5dT45p9wk0gJeATmhWDFJJMaUdcTfw8GLS/vMkw4=";
|
2022-12-31 13:59:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
pkg-config
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
boost
|
|
|
|
gtest
|
|
|
|
wayland
|
|
|
|
];
|
|
|
|
|
|
|
|
passthru.updateScript = gitUpdater {
|
|
|
|
rev-prefix = "v";
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Wayland Conformance Test Suite";
|
|
|
|
longDescription = ''
|
|
|
|
wlcs aspires to be a protocol-conformance-verifying test suite usable by Wayland
|
|
|
|
compositor implementors.
|
|
|
|
|
|
|
|
It is growing out of porting the existing Weston test suite to be run in Mir's
|
|
|
|
test suite, but it is designed to be usable by any compositor.
|
|
|
|
|
|
|
|
wlcs relies on compositors providing an integration module, providing wlcs with
|
|
|
|
API hooks to start a compositor, connect a client, move a window, and so on.
|
|
|
|
This makes both writing and debugging tests easier - the tests are (generally)
|
|
|
|
in the same address space as the compositor, so there is a consistent global
|
|
|
|
clock available, it's easier to poke around in compositor internals, and
|
|
|
|
standard debugging tools can follow control flow from the test client to the
|
|
|
|
compositor and back again.
|
|
|
|
'';
|
|
|
|
homepage = "https://github.com/MirServer/wlcs";
|
|
|
|
changelog = "https://github.com/MirServer/wlcs/releases/tag/v${version}";
|
|
|
|
license = licenses.gpl3Only;
|
|
|
|
maintainers = with maintainers; [ OPNA2608 ];
|
2023-01-20 16:43:33 +00:00
|
|
|
platforms = platforms.linux;
|
2022-12-31 13:59:50 +00:00
|
|
|
};
|
|
|
|
}
|