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

21 lines
510 B
Nix
Raw Normal View History

2015-07-03 23:39:44 +01:00
{ stdenv, lib, bundlerEnv, ruby, perl, autoconf }:
2015-03-02 01:15:43 +00:00
bundlerEnv {
2015-12-03 18:55:01 +00:00
name = "chefdk-0.10.0";
2015-03-02 01:15:43 +00:00
inherit ruby;
gemfile = ./Gemfile;
lockfile = ./Gemfile.lock;
gemset = ./gemset.nix;
2015-07-03 23:39:44 +01:00
buildInputs = [ perl autoconf ];
2015-03-02 01:15:43 +00:00
meta = with lib; {
2015-04-28 09:54:58 +01: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;
};
}