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

This commit is contained in:
Anthony Roussel 2024-03-24 16:22:36 +01:00
parent 2e1fe503f8
commit 79f0d47bb9
No known key found for this signature in database
GPG Key ID: 9DC4987B1A55E75E

View File

@ -1,4 +1,11 @@
{ lib, bundlerApp, makeWrapper, bundlerUpdateScript, puppet-bolt, testers }: {
bundlerApp,
bundlerUpdateScript,
lib,
makeWrapper,
puppet-bolt,
testers,
}:
bundlerApp { bundlerApp {
pname = "bolt"; pname = "bolt";
@ -26,11 +33,13 @@ bundlerApp {
updateScript = bundlerUpdateScript "puppet-bolt"; updateScript = bundlerUpdateScript "puppet-bolt";
}; };
meta = with lib; { meta = {
description = "Execute commands remotely over SSH and WinRM"; description = "Execute commands remotely over SSH and WinRM";
homepage = "https://github.com/puppetlabs/bolt"; homepage = "https://github.com/puppetlabs/bolt";
license = licenses.asl20; changelog = "https://github.com/puppetlabs/bolt/blob/main/CHANGELOG.md";
maintainers = with maintainers; [ uvnikita ]; license = lib.licenses.asl20;
platforms = platforms.unix; mainProgram = "bolt";
maintainers = with lib.maintainers; [ uvnikita anthonyroussel ];
platforms = lib.platforms.unix;
}; };
} }