2015-07-03 15:39:44 -07:00
|
|
|
{ stdenv, lib, bundlerEnv, ruby, perl, autoconf }:
|
2015-03-01 17:15:43 -08:00
|
|
|
|
|
|
|
bundlerEnv {
|
2017-04-08 00:15:45 -07:00
|
|
|
name = "chefdk-1.3.40";
|
2015-03-01 17:15:43 -08:00
|
|
|
|
|
|
|
inherit ruby;
|
2017-01-17 15:40:27 -08:00
|
|
|
gemdir = ./.;
|
2015-03-01 17:15:43 -08:00
|
|
|
|
2015-07-03 15:39:44 -07:00
|
|
|
buildInputs = [ perl autoconf ];
|
2015-03-01 17:15:43 -08:00
|
|
|
|
|
|
|
meta = with lib; {
|
2015-04-28 01:54:58 -07:00
|
|
|
description = "A streamlined development and deployment workflow for Chef platform";
|
2015-03-01 17:15:43 -08:00
|
|
|
homepage = https://downloads.chef.io/chef-dk/;
|
2015-05-28 10:20:29 -07:00
|
|
|
license = licenses.asl20;
|
2015-03-01 17:15:43 -08:00
|
|
|
maintainers = with maintainers; [ offline ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|