xwax: init at version 1.9 (#377421)
[NixPkgs.git] / pkgs / tools / misc / chef-cli / default.nix
blobdd273aff3d7f8500c99b84fef86dba5b67cb8ee7
2   lib,
3   ruby,
4   bundlerApp,
5   bundlerUpdateScript,
6 }:
8 bundlerApp {
9   pname = "chef-cli";
10   gemdir = ./.;
11   inherit ruby;
13   exes = [ "chef-cli" ];
15   passthru.updateScript = bundlerUpdateScript "chef-cli";
17   meta = with lib; {
18     description = "Chef Infra Client is a powerful agent that applies your configurations on remote Linux, macOS, Windows and cloud-based systems";
19     homepage = "https://chef.io/";
20     license = licenses.asl20;
21     maintainers = with maintainers; [ dylanmtaylor ];
22     mainProgram = "chef-cli";
23   };