puppet-bolt: add meta.changelog, maintainers, and remove `with lib;`

+14 -5
+14 -5
pkgs/tools/admin/puppet/puppet-bolt/default.nix
··· 1 - { lib, bundlerApp, makeWrapper, bundlerUpdateScript, puppet-bolt, testers }: 1 + { 2 + bundlerApp, 3 + bundlerUpdateScript, 4 + lib, 5 + makeWrapper, 6 + puppet-bolt, 7 + testers, 8 + }: 2 9 3 10 bundlerApp { 4 11 pname = "bolt"; ··· 26 33 updateScript = bundlerUpdateScript "puppet-bolt"; 27 34 }; 28 35 29 - meta = with lib; { 36 + meta = { 30 37 description = "Execute commands remotely over SSH and WinRM"; 31 38 homepage = "https://github.com/puppetlabs/bolt"; 32 - license = licenses.asl20; 33 - maintainers = with maintainers; [ uvnikita ]; 34 - platforms = platforms.unix; 39 + changelog = "https://github.com/puppetlabs/bolt/blob/main/CHANGELOG.md"; 40 + license = lib.licenses.asl20; 41 + mainProgram = "bolt"; 42 + maintainers = with lib.maintainers; [ uvnikita anthonyroussel ]; 43 + platforms = lib.platforms.unix; 35 44 }; 36 45 }