nixpkgs/pkgs/development/tools/flawfinder/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
718 B
Nix
Raw Normal View History

2021-03-24 22:46:33 +01:00
{ lib
, fetchurl
, python3
}:
2021-06-30 22:39:53 +02:00
python3.pkgs.buildPythonApplication rec {
2021-03-24 22:46:33 +01:00
pname = "flawfinder";
2021-08-31 09:36:18 +02:00
version = "2.0.19";
2021-03-24 22:46:33 +01:00
src = fetchurl {
url = "https://dwheeler.com/flawfinder/flawfinder-${version}.tar.gz";
2021-08-31 09:36:18 +02:00
sha256 = "sha256-/lUJgdNwq/oKKWcTRswLA4Ipqb2QsjnqsPAfEiEt9hg=";
2021-03-24 22:46:33 +01:00
};
2021-06-30 22:39:53 +02:00
# Project is using a combination of bash/Python for the tests
doCheck = false;
2021-03-24 22:46:33 +01:00
2021-06-30 22:39:53 +02:00
pythonImportsCheck = [ "flawfinder" ];
2021-03-24 22:46:33 +01:00
meta = with lib; {
description = "Tool to examines C/C++ source code for security flaws";
mainProgram = "flawfinder";
2021-03-24 22:46:33 +01:00
homepage = "https://dwheeler.com/flawfinder/";
license = with licenses; [ gpl2Only ];
maintainers = with maintainers; [ fab ];
platforms = platforms.all;
2021-03-24 22:46:33 +01:00
};
}