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

46 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv
2020-05-24 06:41:26 +01:00
, fetchFromGitHub
, autoreconfHook
, pcre
, pkg-config
, protobufc
2015-10-31 21:59:34 +00:00
, withCrypto ? true, openssl
, enableMagic ? true, file
, enableCuckoo ? true, jansson
}:
stdenv.mkDerivation rec {
2020-05-24 06:41:26 +01:00
version = "4.0.1";
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}";
2020-05-24 06:41:26 +01:00
sha256 = "0dy8jf0pdn0wilxy1pj6pqjxg7icxkwax09w54np87gl9p00f5rk";
2015-10-31 21:59:34 +00:00
};
2020-05-24 06:41:26 +01:00
nativeBuildInputs = [ autoreconfHook pkg-config ];
2019-11-10 14:26:49 +00:00
2020-05-24 06:41:26 +01:00
buildInputs = [ pcre protobufc ]
2015-10-31 21:59:34 +00:00
++ 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 lib; {
2015-10-31 21:59:34 +00:00
description = "The pattern matching swiss knife for malware researchers";
2020-05-24 06:41:26 +01:00
homepage = "http://Virustotal.github.io/yara/";
license = licenses.asl20;
platforms = platforms.all;
2015-10-31 21:59:34 +00:00
};
}