1{ lib, ruby, bundlerApp, bundlerUpdateScript }:
2
3bundlerApp {
4 pname = "chef-cli";
5 gemdir = ./.;
6 inherit ruby;
7
8 exes = ["chef-cli"];
9
10 passthru.updateScript = bundlerUpdateScript "chef-cli";
11
12 meta = with lib; {
13 description = "The 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 };
18}