checkov: Fix exe not executable
Not really sure why it’s not—it’s executable in the Git repo and is listed properly as a script in setup.py.
This commit is contained in:
parent
b8ba78f1d6
commit
41c56cadff
1 changed files with 4 additions and 0 deletions
|
@ -141,6 +141,10 @@ buildPythonApplication rec {
|
|||
"checkov"
|
||||
];
|
||||
|
||||
postInstall = ''
|
||||
chmod +x $out/bin/checkov
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Static code analysis tool for infrastructure-as-code";
|
||||
homepage = "https://github.com/bridgecrewio/checkov";
|
||||
|
|
Loading…
Reference in a new issue