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 }: 2 3 bundlerApp { 4 pname = "bolt"; ··· 26 updateScript = bundlerUpdateScript "puppet-bolt"; 27 }; 28 29 - meta = with lib; { 30 description = "Execute commands remotely over SSH and WinRM"; 31 homepage = "https://github.com/puppetlabs/bolt"; 32 - license = licenses.asl20; 33 - maintainers = with maintainers; [ uvnikita ]; 34 - platforms = platforms.unix; 35 }; 36 }
··· 1 + { 2 + bundlerApp, 3 + bundlerUpdateScript, 4 + lib, 5 + makeWrapper, 6 + puppet-bolt, 7 + testers, 8 + }: 9 10 bundlerApp { 11 pname = "bolt"; ··· 33 updateScript = bundlerUpdateScript "puppet-bolt"; 34 }; 35 36 + meta = { 37 description = "Execute commands remotely over SSH and WinRM"; 38 homepage = "https://github.com/puppetlabs/bolt"; 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; 44 }; 45 }