nixpkgs/pkgs/tools/security/yara/default.nix

57 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, stdenv
2020-05-24 07:41:26 +02:00
, fetchFromGitHub
, autoreconfHook
, pcre
, pkg-config
, protobufc
2015-10-31 22:59:34 +01:00
, withCrypto ? true, openssl
, enableCuckoo ? true, jansson
2021-03-28 13:15:33 +02:00
, enableDex ? true
, enableDotNet ? true
, enableMacho ? true
, enableMagic ? true, file
, enableStatic ? false
2015-10-31 22:59:34 +01:00
}:
stdenv.mkDerivation rec {
2021-10-22 09:36:16 +02:00
version = "4.1.3";
pname = "yara";
2015-10-31 22:59:34 +01:00
src = fetchFromGitHub {
2017-02-02 04:58:13 +01:00
owner = "VirusTotal";
2015-10-31 22:59:34 +01:00
repo = "yara";
rev = "v${version}";
2021-10-22 09:36:16 +02:00
sha256 = "sha256-7t2KksI3l+wFHqUSw2L4FXepMTJfTow/cTFYA47YBqY=";
2015-10-31 22:59:34 +01:00
};
2020-05-24 07:41:26 +02:00
nativeBuildInputs = [ autoreconfHook pkg-config ];
2019-11-10 15:26:49 +01:00
2020-05-24 07:41:26 +02:00
buildInputs = [ pcre protobufc ]
2021-01-15 10:19:50 +01:00
++ lib.optionals withCrypto [ openssl ]
++ lib.optionals enableMagic [ file ]
++ lib.optionals enableCuckoo [ jansson ]
2015-10-31 22:59:34 +01:00
;
preConfigure = "./bootstrap.sh";
2018-07-25 23:44:21 +02:00
configureFlags = [
2021-01-15 10:19:50 +01:00
(lib.withFeature withCrypto "crypto")
(lib.enableFeature enableCuckoo "cuckoo")
2021-03-28 13:15:33 +02:00
(lib.enableFeature enableDex "dex")
(lib.enableFeature enableDotNet "dotnet")
(lib.enableFeature enableMacho "macho")
(lib.enableFeature enableMagic "magic")
(lib.enableFeature enableStatic "static")
2018-07-25 23:44:21 +02:00
];
2015-10-31 22:59:34 +01:00
doCheck = enableStatic;
meta = with lib; {
2015-10-31 22:59:34 +01:00
description = "The pattern matching swiss knife for malware researchers";
2020-05-24 07:41:26 +02:00
homepage = "http://Virustotal.github.io/yara/";
license = licenses.asl20;
2021-04-12 19:53:11 +02:00
maintainers = with maintainers; [ fab ];
2020-05-24 07:41:26 +02:00
platforms = platforms.all;
2015-10-31 22:59:34 +01:00
};
}