nixpkgs/pkgs/development/tools/cfn-nag/default.nix
2022-03-22 06:46:32 -06:00

20 lines
458 B
Nix

{ 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;
};
}