From 5692d977fcd3ca211c5ad4aae7842ebcf1b97916 Mon Sep 17 00:00:00 2001 From: kyehn Date: Fri, 29 Aug 2025 17:27:37 +0800 Subject: [PATCH] wev: remove with lib --- pkgs/by-name/we/wev/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/we/wev/package.nix b/pkgs/by-name/we/wev/package.nix index 4bfbace8c38a..7163cabb3a5a 100644 --- a/pkgs/by-name/we/wev/package.nix +++ b/pkgs/by-name/we/wev/package.nix @@ -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"; }; })