From f43aa249297e7214d277e8b45b3833ee9d320d86 Mon Sep 17 00:00:00 2001 From: Tim Likarish Ellis Date: Fri, 3 Jan 2025 22:42:04 -0500 Subject: [PATCH] lnav: add PRQL support Update the 0.12.3 version to include PRQL querying support. --- Formula/l/lnav.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Formula/l/lnav.rb b/Formula/l/lnav.rb index e08ae4241c0ff9..ccf8c2f4245bc5 100644 --- a/Formula/l/lnav.rb +++ b/Formula/l/lnav.rb @@ -27,6 +27,7 @@ class Lnav < Formula depends_on "re2c" => :build end + depends_on "rust" => :build depends_on "libarchive" depends_on "ncurses" depends_on "pcre2" @@ -43,7 +44,8 @@ def install "--with-sqlite3=#{Formula["sqlite"].opt_prefix}", "--with-readline=#{Formula["readline"].opt_prefix}", "--with-libarchive=#{Formula["libarchive"].opt_prefix}", - "--with-ncurses=#{Formula["ncurses"].opt_prefix}" + "--with-ncurses=#{Formula["ncurses"].opt_prefix}", + "--with-rust=#{Formula["rust"].opt_prefix}" system "make", "install", "V=1" end