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

22 lines
573 B
Nix
Raw Normal View History

{ lib, bundlerEnv, bundlerUpdateScript, ruby, perl, autoconf }:
2015-03-02 02:15:43 +01:00
2019-08-13 23:52:01 +02:00
bundlerEnv {
2020-02-23 00:48:10 +01:00
name = "chef-dk-4.7.73";
2015-03-02 02:15:43 +01:00
inherit ruby;
2017-01-18 00:40:27 +01:00
gemdir = ./.;
2015-03-02 02:15:43 +01:00
2015-07-04 00:39:44 +02:00
buildInputs = [ perl autoconf ];
2015-03-02 02:15:43 +01:00
passthru.updateScript = bundlerUpdateScript "chefdk";
2015-03-02 02:15:43 +01:00
meta = with lib; {
2015-04-28 10:54:58 +02:00
description = "A streamlined development and deployment workflow for Chef platform";
2015-03-02 02:15:43 +01:00
homepage = https://downloads.chef.io/chef-dk/;
license = licenses.asl20;
maintainers = with maintainers; [ offline nicknovitski ];
2015-03-02 02:15:43 +01:00
platforms = platforms.unix;
2020-02-29 04:33:06 +01:00
badPlatforms = [ "aarch64-linux" ];
2015-03-02 02:15:43 +01:00
};
}