57 lines
1.3 KiB
Nix
57 lines
1.3 KiB
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, autoreconfHook
|
|
, pcre
|
|
, pkg-config
|
|
, protobufc
|
|
, withCrypto ? true, openssl
|
|
, enableCuckoo ? true, jansson
|
|
, enableDex ? true
|
|
, enableDotNet ? true
|
|
, enableMacho ? true
|
|
, enableMagic ? true, file
|
|
, enableStatic ? false
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "4.1.3";
|
|
pname = "yara";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "VirusTotal";
|
|
repo = "yara";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-7t2KksI3l+wFHqUSw2L4FXepMTJfTow/cTFYA47YBqY=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
|
|
buildInputs = [ pcre protobufc ]
|
|
++ lib.optionals withCrypto [ openssl ]
|
|
++ lib.optionals enableMagic [ file ]
|
|
++ lib.optionals enableCuckoo [ jansson ]
|
|
;
|
|
|
|
preConfigure = "./bootstrap.sh";
|
|
|
|
configureFlags = [
|
|
(lib.withFeature withCrypto "crypto")
|
|
(lib.enableFeature enableCuckoo "cuckoo")
|
|
(lib.enableFeature enableDex "dex")
|
|
(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/";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ fab ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|