nixpkgs/pkgs/development/tools/chefdk/default.nix

21 lines
509 B
Nix
Raw Normal View History

2015-07-03 18:39:44 -04:00
{ stdenv, lib, bundlerEnv, ruby, perl, autoconf }:
2015-03-01 20:15:43 -05:00
bundlerEnv {
name = "chefdk-0.4.0";
inherit ruby;
gemfile = ./Gemfile;
lockfile = ./Gemfile.lock;
gemset = ./gemset.nix;
2015-07-03 18:39:44 -04:00
buildInputs = [ perl autoconf ];
2015-03-01 20:15:43 -05:00
meta = with lib; {
2015-04-28 04:54:58 -04:00
description = "A streamlined development and deployment workflow for Chef platform";
2015-03-01 20:15:43 -05:00
homepage = https://downloads.chef.io/chef-dk/;
license = licenses.asl20;
2015-03-01 20:15:43 -05:00
maintainers = with maintainers; [ offline ];
platforms = platforms.unix;
};
}