21 lines
540 B
Nix
21 lines
540 B
Nix
{ lib, bundlerEnv, ruby_2_4, perl, autoconf }:
|
|
|
|
bundlerEnv {
|
|
# Last updated via:
|
|
# nix-shell -p bundix -p gcc -p libxml2 -p zlib --run "bundix -mdl"
|
|
name = "chefdk-2.4.17";
|
|
|
|
ruby = ruby_2_4;
|
|
gemdir = ./.;
|
|
|
|
buildInputs = [ perl autoconf ];
|
|
|
|
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;
|
|
};
|
|
}
|