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

19 lines
449 B
Nix
Raw Normal View History

2015-07-04 01:39:44 +03:00
{ stdenv, lib, bundlerEnv, ruby, perl, autoconf }:
2015-03-02 04:15:43 +03:00
bundlerEnv {
2016-03-11 04:19:30 +03:00
name = "chefdk-0.11.2";
2015-03-02 04:15:43 +03:00
inherit ruby;
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
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;
2015-03-02 04:15:43 +03:00
maintainers = with maintainers; [ offline ];
platforms = platforms.unix;
};
}