about summary refs log tree commit diff
path: root/pkgs/development/tools/cfn-nag/default.nix
blob: 8438607102c36007b24a3732423fcc3a29d72671 (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 = [ ];
    platforms = platforms.unix;
  };
}