about summary refs log tree commit diff
path: root/pkgs/development/tools/cfn-nag/default.nix
blob: 4e25f052401d70ee8d008968b90695bbf3d2c008 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, bundlerEnv, bundlerUpdateScript, ruby }:

bundlerEnv {
  pname = "cfn-nag";
  version = "0.8.9";

  inherit ruby;
  gemdir = ./.;

  passthru.updateScript = bundlerUpdateScript "cfn-nag";

  meta = with lib; {
    description = "Linting tool for CloudFormation templates";
    homepage = "https://github.com/stelligent/cfn_nag";
    license = licenses.mit;
    maintainers = with maintainers; [ wolfangaukang ];
    platforms = platforms.unix;
  };
}