From 83eef2e6072314df41354803e82fb2137d4487ef Mon Sep 17 00:00:00 2001 From: fliiiix Date: Sun, 16 Aug 2026 12:41:23 +0200 Subject: [PATCH] invidious: update pcre to pcre2 PCRE must be present to run: ``` crystal run scripts/fetch-player-dependencies.cr -- --minified ``` Otherwise this step will fail during build with a linker error. ``` /nix/store/8lkj89binl0xhraqxb8bwmv0q4p3pnlr-binutils-2.46/bin/ld.bfd: cannot find -lpcre (this usually means you need to install the development package for libpcre): No such file or directory collect2: error: ld returned 1 exit status ``` --- pkgs/by-name/in/invidious/update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/in/invidious/update.sh b/pkgs/by-name/in/invidious/update.sh index a61a48286c7d..31d274c55039 100755 --- a/pkgs/by-name/in/invidious/update.sh +++ b/pkgs/by-name/in/invidious/update.sh @@ -1,5 +1,5 @@ #!/usr/bin/env nix-shell -#!nix-shell -i bash -p curl crystal crystal2nix jq git moreutils nix nurl pkg-config pcre gnugrep +#!nix-shell -i bash -p curl crystal crystal2nix jq git moreutils nix nurl pkg-config pcre2 gnugrep git_url='https://github.com/iv-org/invidious.git' git_branch='master' git_dir='/var/tmp/invidious.git'