nixpkgs-suyu/pkgs/development/tools/cfn-nag/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
458 B
Nix
Raw Normal View History

2022-03-22 13:46:32 +01:00
{ 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;
};
}