watchexec: avoid with lib;

This commit is contained in:
Sizhe Zhao
2025-06-02 21:08:24 +08:00
parent 5320ab9f9e
commit 548afb3c37
+5 -3
View File
@@ -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";
};
})