mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 03:12:51 +00:00
f8c4a98e8e
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/'
20 lines
525 B
Nix
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";
|
|
};
|
|
}
|