2017-11-27 13:19:42 +00:00
|
|
|
{ stdenv, lib, bundlerEnv, ruby_2_4, perl, autoconf }:
|
2015-03-02 01:15:43 +00:00
|
|
|
|
|
|
|
bundlerEnv {
|
2017-11-27 13:19:42 +00:00
|
|
|
# Last updated via:
|
|
|
|
# nix-shell -p bundix -p gcc -p libxml2 -p zlib --run "bundix -mdl"
|
2017-12-07 16:36:31 +00:00
|
|
|
name = "chefdk-2.4.17";
|
2015-03-02 01:15:43 +00:00
|
|
|
|
2017-11-27 13:19:42 +00:00
|
|
|
ruby = ruby_2_4;
|
2017-01-17 23:40:27 +00:00
|
|
|
gemdir = ./.;
|
2015-03-02 01:15:43 +00:00
|
|
|
|
2015-07-03 23:39:44 +01:00
|
|
|
buildInputs = [ perl autoconf ];
|
2015-03-02 01:15:43 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
2015-04-28 09:54:58 +01:00
|
|
|
description = "A streamlined development and deployment workflow for Chef platform";
|
2015-03-02 01:15:43 +00:00
|
|
|
homepage = https://downloads.chef.io/chef-dk/;
|
2015-05-28 18:20:29 +01:00
|
|
|
license = licenses.asl20;
|
2015-03-02 01:15:43 +00:00
|
|
|
maintainers = with maintainers; [ offline ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|