Compare commits

...

2 commits

Author SHA1 Message Date
a0f1536c8f 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
fd6a663567 Update pkgs/vscode-insiders/default.nix
All checks were successful
CI / check (push) Successful in 4s
CI / list-packages (push) Successful in 2s
CI / build (default) (push) Successful in 4s
CI / build (helium) (push) Successful in 4s
CI / build (helium-sync) (push) Successful in 3s
CI / build (pjsk-cursor) (push) Successful in 3s
CI / build (vscode-insiders) (push) Successful in 36s
CI / build (waterfox-bin) (push) Successful in 4s
CI / build (xcursor-mizuki) (push) Successful in 3s
2026-05-21 10:38:35 +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";
};
})
})