mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
25 lines
464 B
Nix
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;
|
|
};
|
|
}
|