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

21 lines
540 B
Nix
Raw Normal View History

{ lib, bundlerEnv, bundlerUpdateScript, ruby_2_4, perl, autoconf }:
2015-03-02 04:15:43 +03:00
2019-08-14 00:52:01 +03:00
bundlerEnv {
2019-11-27 19:14:15 +03:00
name = "chef-dk-2.4.17";
2015-03-02 04:15:43 +03:00
2017-11-27 16:19:42 +03:00
ruby = ruby_2_4;
2017-01-18 02:40:27 +03:00
gemdir = ./.;
2015-03-02 04:15:43 +03:00
2015-07-04 01:39:44 +03:00
buildInputs = [ perl autoconf ];
2015-03-02 04:15:43 +03:00
passthru.updateScript = bundlerUpdateScript "chefdk";
2015-03-02 04:15:43 +03:00
meta = with lib; {
2015-04-28 11:54:58 +03:00
description = "A streamlined development and deployment workflow for Chef platform";
2015-03-02 04:15:43 +03:00
homepage = https://downloads.chef.io/chef-dk/;
license = licenses.asl20;
maintainers = with maintainers; [ offline nicknovitski ];
2015-03-02 04:15:43 +03:00
platforms = platforms.unix;
};
}