From 94e62564cb9c04e726e1d40c16d7cab211696952 Mon Sep 17 00:00:00 2001 From: Aria Edmonds Date: Mon, 22 Jul 2019 19:18:22 +1000 Subject: [PATCH] ripgrep: turn withPCRE2 on by default This is set by default in archpkgs and debian repos, and would confuse fewer new users. --- pkgs/tools/text/ripgrep/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/text/ripgrep/default.nix b/pkgs/tools/text/ripgrep/default.nix index 1563fe744ef..311767a786f 100644 --- a/pkgs/tools/text/ripgrep/default.nix +++ b/pkgs/tools/text/ripgrep/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchFromGitHub, rustPlatform, asciidoc, docbook_xsl, libxslt , Security -, withPCRE2 ? false, pcre2 ? null +, withPCRE2 ? true, pcre2 ? null }: rustPlatform.buildRustPackage rec {