From 0c754ba8242707b6a7c3df7419e92d505daa066a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Jourdois?= Date: Sat, 31 Oct 2015 22:59:34 +0100 Subject: [PATCH] yara: init at 3.4.0 --- pkgs/tools/security/yara/default.nix | 64 ++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 66 insertions(+) create mode 100644 pkgs/tools/security/yara/default.nix diff --git a/pkgs/tools/security/yara/default.nix b/pkgs/tools/security/yara/default.nix new file mode 100644 index 00000000000..6a5269c03dc --- /dev/null +++ b/pkgs/tools/security/yara/default.nix @@ -0,0 +1,64 @@ +{ stdenv, fetchurl, fetchFromGitHub, autoconf, automake, libtool, pcre +, withCrypto ? true, openssl +, enableMagic ? true, file +, enableCuckoo ? true, jansson +}: + +stdenv.mkDerivation rec { + version = "3.4.0"; + name = "yara-${version}"; + + src = fetchFromGitHub { + owner = "plusvic"; + repo = "yara"; + rev = "v${version}"; + sha256 = "1rv1xixbjqx1vkcij8r01rq08ncqgy6nn98xvkrpixwvi4fy956s"; + }; + + # FIXME: this is probably not the right way to make it work + # make[2]: *** No rule to make target 'libyara/.libs/libyara.a', needed by 'yara'. Stop. + dynamic_library_extension = "" + + stdenv.lib.optionalString stdenv.isLinux "so" + + stdenv.lib.optionalString stdenv.isDarwin "dylib" + ; + prePatch = '' + cat >staticlibrary.patch <