mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 03:34:58 +00:00
flawfinder: 2.0.15 -> 2.0.18
This commit is contained in:
parent
c8ec117b04
commit
c978cf2701
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user