diff --git a/pkgs/by-name/wa/waycheck/package.nix b/pkgs/by-name/wa/waycheck/package.nix new file mode 100644 index 000000000000..b736f0c20edc --- /dev/null +++ b/pkgs/by-name/wa/waycheck/package.nix @@ -0,0 +1,58 @@ +{ lib +, stdenv +, fetchFromGitLab +, meson +, ninja +, pkg-config +, qt6 +, wayland +, glib +, wrapGAppsHook +}: + +stdenv.mkDerivation rec { + pname = "waycheck"; + version = "0.1.3"; + + src = fetchFromGitLab { + domain = "gitlab.freedesktop.org"; + owner = "serebit"; + repo = "waycheck"; + rev = "v${version}"; + hash = "sha256-DbXc1Q/ZIqlIMocFld3fOmUp44rU3fEzazHKSDdqMNs="; + }; + + nativeBuildInputs = [ + meson + ninja + pkg-config + wrapGAppsHook + qt6.wrapQtAppsHook + ]; + + buildInputs = [ + glib + wayland + qt6.qtwayland + ]; + + dontWrapGApps = true; + + preFixup = '' + qtWrapperArgs+=("''${gappsWrapperArgs[@]}") + ''; + + preInstall = '' + substituteInPlace ../scripts/mesonPostInstall.sh \ + --replace "update-desktop-database -q" "update-desktop-database $out/share/applications" + ''; + + meta = with lib; { + description = "Simple GUI that displays the protocols implemented by a Wayland compositor"; + homepage = "https://gitlab.freedesktop.org/serebit/waycheck"; + license = licenses.asl20; + maintainers = with maintainers; [ julienmalka ]; + mainProgram = "waycheck"; + platforms = platforms.linux; + }; +}