yara: add enableStatic mode

useful because tests can be enabled in this mode
This commit is contained in:
Robert Scott 2021-05-29 20:47:22 +01:00
parent 2d7f554229
commit 8cda1cc59e

View file

@ -10,6 +10,7 @@
, enableDotNet ? true
, enableMacho ? true
, enableMagic ? true, file
, enableStatic ? false
}:
stdenv.mkDerivation rec {
@ -40,8 +41,11 @@ stdenv.mkDerivation rec {
(lib.enableFeature enableDotNet "dotnet")
(lib.enableFeature enableMacho "macho")
(lib.enableFeature enableMagic "magic")
(lib.enableFeature enableStatic "static")
];
doCheck = enableStatic;
meta = with lib; {
description = "The pattern matching swiss knife for malware researchers";
homepage = "http://Virustotal.github.io/yara/";