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"; }; })