nixpkgs/pkgs/development/tools/chefdk/default.nix
2015-12-03 13:28:26 -08:00

21 lines
510 B
Nix

{ stdenv, lib, bundlerEnv, ruby, perl, autoconf }:
bundlerEnv {
name = "chefdk-0.10.0";
inherit ruby;
gemfile = ./Gemfile;
lockfile = ./Gemfile.lock;
gemset = ./gemset.nix;
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;
};
}