From 250eaf4020b70299a4b88f1f267dfbc9f345d398 Mon Sep 17 00:00:00 2001 From: Thomas Gerbet Date: Tue, 11 Mar 2025 22:05:52 +0100 Subject: [PATCH] yara: remove unused dependency to pcre YARA does not need it since YARA 2, it has its own engine. --- pkgs/by-name/ya/yara/package.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkgs/by-name/ya/yara/package.nix b/pkgs/by-name/ya/yara/package.nix index bd6108e8da5d..34574c744c14 100644 --- a/pkgs/by-name/ya/yara/package.nix +++ b/pkgs/by-name/ya/yara/package.nix @@ -3,7 +3,6 @@ stdenv, fetchFromGitHub, autoreconfHook, - pcre, pkg-config, protobufc, withCrypto ? true, @@ -36,7 +35,6 @@ stdenv.mkDerivation rec { buildInputs = [ - pcre protobufc ] ++ lib.optionals withCrypto [ openssl ]