pkgs/helium: update to 0.12.4.1 #15

Merged
imnyang merged 3 commits from update/helium-0.12.4.1 into main 2026-05-21 10:40:04 +09:00
Showing only changes of commit a0f1536c8f - Show all commits

Merge branch 'main' into update/helium-0.12.4.1
Some checks failed
CI / check (pull_request) Successful in 4s
CI / list-packages (pull_request) Failing after 2s

암냥 2026-05-21 10:39:57 +09:00

View file

@ -14,9 +14,16 @@ in
isInsiders = true;
inherit src;
buildInputs = oldAttrs.buildInputs ++ [ pkgs.krb5 pkgs.libsoup_3 pkgs.webkitgtk_4_1 ];
buildInputs = (oldAttrs.buildInputs or []) ++ [ pkgs.krb5 pkgs.libsoup_3 pkgs.webkitgtk_4_1 ];
meta = oldAttrs.meta // {
prePatch = ''
${oldAttrs.prePatch or ""}
mkdir -p resources/app/node_modules/@vscode/ripgrep/bin
touch resources/app/node_modules/@vscode/ripgrep/bin/rg
'';
meta = (oldAttrs.meta or {}) // {
mainProgram = "code-insiders";
};
})
})