wev: remove with lib

This commit is contained in:
kyehn
2025-08-29 17:27:37 +08:00
parent 0c20865373
commit 5692d977fc
+4 -4
View File
@@ -39,16 +39,16 @@ stdenv.mkDerivation (finalAttrs: {
installFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
meta = {
homepage = "https://git.sr.ht/~sircmpwn/wev";
description = "Wayland event viewer";
longDescription = ''
This is a tool for debugging events on a Wayland window, analogous to the
X11 tool xev.
'';
license = licenses.mit;
maintainers = with maintainers; [ rewine ];
platforms = platforms.linux;
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ rewine ];
platforms = lib.platforms.linux;
mainProgram = "wev";
};
})