Alexander Flurie
Alexander Flurie
I've been having this issue on macOS as well. I've taken to editing `all-packages.nix` in vim as a stopgap. Setting `lsp-idle-delay` to `0.5` does not seem to mitigate the issue...
Would it be possible to do a functional 1:1 mapping if the export to/import from JSON included schema/annotation information that facilitated the conversion? If I understand correctly, this would require...
I'm going to hold off on the by-name migration until we come to a decision about whether or not to replace the existing `bazel_7`.
> Is the reason to have this as a separate package just getting fetching to work properly? If that can be solved it seems better to update the main Bazel...
Your perspective even without the additional context is valuable, because it tells me this probably does not clear the bar for needing to split the package further. I'm now leaning...
I think these changes are pretty well localized to the Bazel derivation itself, so I do think this is fine to upgrade in place. I've switched to Bazel 7.3.1 and...
> What are concrete reproducibility issues one might run in with the current `bazel vendor`? If it's not only only scoped to the exact output of `vendor_dir` (e.g. fs metadata),...
> ofborg failed on aarch64-linux https://github.com/NixOS/nixpkgs/pull/338264/checks?check_run_id=29843898664 > > ``` > Running phase: installPhase > error: hash mismatch in fixed-output derivation '/nix/store/3qkg9gsd23m4cxc6hyh0rsbb67k2b26a-bazel_deps.drv': > specified: sha256-xW+KZIsOGrDV7WIcg/elHpFEmfs1TfFky3bVqCdWr9k= > got: sha256-aimcCcnkghet0FWikJFL/JtkSGCAAB4MpSlZeIRbemM= > ``` >...
> We have [mitm-cache](https://github.com/chayleaf/mitm-cache) that is used for Gradle stuff now. Although yes, it’s a bit of a last‐resort option. This looks useful! But I agree, this is probably a...
So I tried adding a vendor "rotation" through all the platforms: ``` for platform in linux_x86_64 linux_arm64 darwin_x86_64 darwin_arm64 do ${bazelFhs}/bin/bazel --server_javabase=${runJdk} vendor \ --curses=no \ --vendor_dir ../vendor_dir \ --verbose_failures...