nixpkgs/pkgs/by-name/cf/cfn-nag/package.nix
2024-10-02 15:16:17 +09:00

25 lines
464 B
Nix

{
lib,
bundlerEnv,
bundlerUpdateScript,
ruby,
}:
bundlerEnv {
pname = "cfn-nag";
version = "0.8.10";
inherit ruby;
gemdir = ./.;
passthru.updateScript = bundlerUpdateScript "cfn-nag";
meta = {
description = "Linting tool for CloudFormation templates";
homepage = "https://github.com/stelligent/cfn_nag";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ momeemt ];
platforms = lib.platforms.unix;
};
}