flawfinder: 2.0.15 -> 2.0.18

This commit is contained in:
Fabian Affolter 2021-06-30 22:39:53 +02:00 committed by Matthieu Coudron
parent c8ec117b04
commit c978cf2701

View file

@ -1,30 +1,22 @@
{ lib
, stdenv
, fetchurl
, installShellFiles
, python3
}:
stdenv.mkDerivation rec {
python3.pkgs.buildPythonApplication rec {
pname = "flawfinder";
version = "2.0.15";
version = "2.0.18";
src = fetchurl {
url = "https://dwheeler.com/flawfinder/flawfinder-${version}.tar.gz";
sha256 = "01j4szy8gwvikrfzfayfayjnc1za0jxsnxp5fsa6d06kn69wyr8a";
sha256 = "1hk2y13fd2a5gf42a1hk45hw6pbls715wi9k1yh3c3wyhvbyylba";
};
nativeBuildInputs = [ installShellFiles ];
# Project is using a combination of bash/Python for the tests
doCheck = false;
buildInputs = [ python3 ];
installPhase = ''
runHook preInstall
mkdir -p $out/bin
cp ${pname} $out/bin
installManPage flawfinder.1
runHook postInstall
'';
pythonImportsCheck = [ "flawfinder" ];
meta = with lib; {
description = "Tool to examines C/C++ source code for security flaws";