Add chef-dk

This commit is contained in:
Jaka Hudoklin
2015-03-18 14:17:25 +01:00
parent 17b9405685
commit b5298683aa
5 changed files with 470 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
{ 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; {
description = "A streamlined development and deployment workflow for Chef platform.";
homepage = https://downloads.chef.io/chef-dk/;
license = with licenses; asl20;
maintainers = with maintainers; [ offline ];
platforms = platforms.unix;
};
}