about summary refs log tree commit diff
path: root/pkgs/development/tools/chefdk/default.nix
blob: 93af8815fb3a1d9844b8013bc8bcebd61322557f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ 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" ];
  };
}