2017-02-02 03:58:13 +00:00
|
|
|
{ stdenv, fetchFromGitHub, autoconf, automake, libtool, pcre
|
2015-10-31 21:59:34 +00:00
|
|
|
, withCrypto ? true, openssl
|
|
|
|
, enableMagic ? true, file
|
|
|
|
, enableCuckoo ? true, jansson
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-05-13 14:00:16 +01:00
|
|
|
version = "3.10.0";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "yara";
|
2015-10-31 21:59:34 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2017-02-02 03:58:13 +00:00
|
|
|
owner = "VirusTotal";
|
2015-10-31 21:59:34 +00:00
|
|
|
repo = "yara";
|
|
|
|
rev = "v${version}";
|
2019-05-13 14:00:16 +01:00
|
|
|
sha256 = "1qxqk324cyvi4n09s79786ciig1gdyhs9dnsm07hf95a3kh6w5z2";
|
2015-10-31 21:59:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ autoconf automake libtool pcre]
|
|
|
|
++ stdenv.lib.optionals withCrypto [ openssl ]
|
|
|
|
++ stdenv.lib.optionals enableMagic [ file ]
|
|
|
|
++ stdenv.lib.optionals enableCuckoo [ jansson ]
|
|
|
|
;
|
|
|
|
|
|
|
|
preConfigure = "./bootstrap.sh";
|
|
|
|
|
2018-07-25 22:44:21 +01:00
|
|
|
configureFlags = [
|
|
|
|
(stdenv.lib.withFeature withCrypto "crypto")
|
|
|
|
(stdenv.lib.enableFeature enableMagic "magic")
|
|
|
|
(stdenv.lib.enableFeature enableCuckoo "cuckoo")
|
|
|
|
];
|
2015-10-31 21:59:34 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "The pattern matching swiss knife for malware researchers";
|
2017-11-21 23:22:08 +00:00
|
|
|
homepage = http://Virustotal.github.io/yara/;
|
2015-10-31 21:59:34 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
};
|
|
|
|
}
|