biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / chef-cli / default.nix
blob01a80de279568311e0444ba77b45178cc7341643
1 { lib, ruby, bundlerApp, bundlerUpdateScript }:
3 bundlerApp {
4   pname = "chef-cli";
5   gemdir = ./.;
6   inherit ruby;
8   exes = ["chef-cli"];
10   passthru.updateScript = bundlerUpdateScript "chef-cli";
12   meta = with lib; {
13     description = "Chef Infra Client is a powerful agent that applies your configurations on remote Linux, macOS, Windows and cloud-based systems";
14     homepage = "https://chef.io/";
15     license = licenses.asl20;
16     maintainers = with maintainers; [ dylanmtaylor ];
17     mainProgram = "chef-cli";
18   };