nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 ruby,
4 bundlerApp,
5 bundlerUpdateScript,
6}:
7
8bundlerApp {
9 pname = "chef-cli";
10 gemdir = ./.;
11 inherit ruby;
12
13 exes = [ "chef-cli" ];
14
15 passthru.updateScript = bundlerUpdateScript "chef-cli";
16
17 meta = {
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 = lib.licenses.asl20;
21 maintainers = with lib.maintainers; [ dylanmtaylor ];
22 mainProgram = "chef-cli";
23 };
24}