From 548afb3c372a67114a8b1bcd6ff18db07652b823 Mon Sep 17 00:00:00 2001 From: Sizhe Zhao Date: Sun, 18 May 2025 20:32:41 +0800 Subject: [PATCH] watchexec: avoid with lib; --- pkgs/by-name/wa/watchexec/package.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/wa/watchexec/package.nix b/pkgs/by-name/wa/watchexec/package.nix index b2785f3d8655..f53c82d7a630 100644 --- a/pkgs/by-name/wa/watchexec/package.nix +++ b/pkgs/by-name/wa/watchexec/package.nix @@ -38,11 +38,13 @@ rustPlatform.buildRustPackage (finalAttrs: { installShellCompletion --zsh --name _watchexec completions/zsh ''; - meta = with lib; { + meta = { description = "Executes commands in response to file modifications"; homepage = "https://watchexec.github.io/"; - license = with licenses; [ asl20 ]; - maintainers = [ maintainers.michalrus ]; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ + michalrus + ]; mainProgram = "watchexec"; }; })