biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / cfn-nag / default.nix
blob4e25f052401d70ee8d008968b90695bbf3d2c008
1 { lib, bundlerEnv, bundlerUpdateScript, ruby }:
3 bundlerEnv {
4   pname = "cfn-nag";
5   version = "0.8.9";
7   inherit ruby;
8   gemdir = ./.;
10   passthru.updateScript = bundlerUpdateScript "cfn-nag";
12   meta = with lib; {
13     description = "Linting tool for CloudFormation templates";
14     homepage = "https://github.com/stelligent/cfn_nag";
15     license = licenses.mit;
16     maintainers = with maintainers; [ wolfangaukang ];
17     platforms = platforms.unix;
18   };