nixpkgs/pkgs/tools/misc/chef-cli/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
529 B
Nix
Raw Normal View History

2023-04-18 18:07:48 +00:00
{ lib, ruby, bundlerApp, bundlerUpdateScript }:
bundlerApp {
pname = "chef-cli";
gemdir = ./.;
inherit ruby;
exes = ["chef-cli"];
passthru.updateScript = bundlerUpdateScript "chef-cli";
meta = with lib; {
description = "The Chef Infra Client is a powerful agent that applies your configurations on remote Linux, macOS, Windows and cloud-based systems";
homepage = "https://chef.io/";
license = licenses.asl20;
maintainers = with maintainers; [ dylanmtaylor ];
2023-11-27 01:17:53 +00:00
mainProgram = "chef-cli";
2023-04-18 18:07:48 +00:00
};
}