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

21 lines
490 B
Nix
Raw Normal View History

2015-03-02 01:15:43 +00:00
{ stdenv, lib, bundlerEnv, ruby, perl }:
bundlerEnv {
name = "chefdk-0.4.0";
inherit ruby;
gemfile = ./Gemfile;
lockfile = ./Gemfile.lock;
gemset = ./gemset.nix;
buildInputs = [ perl ];
meta = with lib; {
2015-04-28 08:54:58 +00: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/;
license = licenses.asl20;
2015-03-02 01:15:43 +00:00
maintainers = with maintainers; [ offline ];
platforms = platforms.unix;
};
}