about summary refs log tree commit diff
path: root/pkgs/development/tools/chefdk/default.nix
blob: ee49423a8b1707c803cb7592b6769c7be38cdce0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, lib, bundlerEnv, ruby, perl }:

bundlerEnv {
  name = "chefdk-0.4.0";

  inherit ruby;
  gemfile = ./Gemfile;
  lockfile = ./Gemfile.lock;
  gemset = ./gemset.nix;

  buildInputs = [ perl ];

  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 ];
    platforms   = platforms.unix;
  };
}