Merge pull request #117417 from fabaff/flawfinder

flawfinder: init at 2.0.15
This commit is contained in:
Sandro 2021-03-26 18:07:14 +01:00 committed by GitHub
commit 70d05748e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,35 @@
{ lib
, stdenv
, fetchurl
, installShellFiles
, python3
}:
stdenv.mkDerivation rec {
pname = "flawfinder";
version = "2.0.15";
src = fetchurl {
url = "https://dwheeler.com/flawfinder/flawfinder-${version}.tar.gz";
sha256 = "01j4szy8gwvikrfzfayfayjnc1za0jxsnxp5fsa6d06kn69wyr8a";
};
nativeBuildInputs = [ installShellFiles ];
buildInputs = [ python3 ];
installPhase = ''
runHook preInstall
mkdir -p $out/bin
cp ${pname} $out/bin
installManPage flawfinder.1
runHook postInstall
'';
meta = with lib; {
description = "Tool to examines C/C++ source code for security flaws";
homepage = "https://dwheeler.com/flawfinder/";
license = with licenses; [ gpl2Only ];
maintainers = with maintainers; [ fab ];
};
}

View File

@ -4412,6 +4412,8 @@ in
flamegraph = callPackage ../development/tools/flamegraph { };
flawfinder = callPackage ../development/tools/flawfinder { };
flips = callPackage ../tools/compression/flips { };
fmbt = callPackage ../development/tools/fmbt {