depot/third_party/nixpkgs/pkgs/development/tools/chefdk/default.nix
Default email 81047829ea Project import generated by Copybara.
GitOrigin-RevId: 48d63e924a2666baf37f4f14a18f19347fbd54a2
2022-02-10 15:34:41 -05:00

23 lines
730 B
Nix

{ lib, bundlerEnv, bundlerUpdateScript, ruby, perl, autoconf }:
bundlerEnv {
name = "chef-dk-4.13.3";
# Do not change this to pname & version until underlying issues with Ruby
# packaging are resolved ; see https://github.com/NixOS/nixpkgs/issues/70171
inherit ruby;
gemdir = ./.;
buildInputs = [ perl autoconf ];
passthru.updateScript = bundlerUpdateScript "chefdk";
meta = with lib; {
description = "A streamlined development and deployment workflow for Chef platform";
homepage = "https://downloads.chef.io/chef-dk/";
license = licenses.asl20;
maintainers = with maintainers; [ offline nicknovitski ];
platforms = platforms.unix;
badPlatforms = [ "aarch64-linux" ];
};
}