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

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

28 lines
686 B
Nix
Raw Normal View History

2021-03-24 21:46:33 +00:00
{ lib
, fetchurl
, python3
}:
2021-06-30 20:39:53 +00:00
python3.pkgs.buildPythonApplication rec {
2021-03-24 21:46:33 +00:00
pname = "flawfinder";
2021-08-31 07:36:18 +00:00
version = "2.0.19";
2021-03-24 21:46:33 +00:00
src = fetchurl {
url = "https://dwheeler.com/flawfinder/flawfinder-${version}.tar.gz";
2021-08-31 07:36:18 +00:00
sha256 = "sha256-/lUJgdNwq/oKKWcTRswLA4Ipqb2QsjnqsPAfEiEt9hg=";
2021-03-24 21:46:33 +00:00
};
2021-06-30 20:39:53 +00:00
# Project is using a combination of bash/Python for the tests
doCheck = false;
2021-03-24 21:46:33 +00:00
2021-06-30 20:39:53 +00:00
pythonImportsCheck = [ "flawfinder" ];
2021-03-24 21:46:33 +00:00
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 ];
platforms = platforms.all;
2021-03-24 21:46:33 +00:00
};
}