nixpkgs/pkgs/tools/misc/chef-cli/default.nix
Alexis Hildebrandt f8c4a98e8e treewide: Remove the definite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"([Tt]he)? ' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Tt]he (.)/\1\U\2/'
2024-06-09 23:08:46 +02:00

20 lines
525 B
Nix

{ lib, ruby, bundlerApp, bundlerUpdateScript }:
bundlerApp {
pname = "chef-cli";
gemdir = ./.;
inherit ruby;
exes = ["chef-cli"];
passthru.updateScript = bundlerUpdateScript "chef-cli";
meta = with lib; {
description = "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 ];
mainProgram = "chef-cli";
};
}