aboutsummaryrefslogtreecommitdiff
path: root/nix/compile.nix
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2024-02-08 23:23:27 +0100
committerAlex Auvolat <alex@adnab.me>2024-02-08 23:23:27 +0100
commit8724aabdf5463c3baedff5bfbfa9e0f71510ef96 (patch)
tree46c462fa8de931ff296596921bdd4bcb9715ed19 /nix/compile.nix
parent57024a21290d6f29aac9d8df0fbe107663b3945e (diff)
downloadgarage-8724aabdf5463c3baedff5bfbfa9e0f71510ef96.tar.gz
garage-8724aabdf5463c3baedff5bfbfa9e0f71510ef96.zip
[oxalica-toolchain-only] remove obsolete comment on toolchains
Diffstat (limited to 'nix/compile.nix')
-rw-r--r--nix/compile.nix11
1 files changed, 0 insertions, 11 deletions
diff --git a/nix/compile.nix b/nix/compile.nix
index f13c4877..1e712710 100644
--- a/nix/compile.nix
+++ b/nix/compile.nix
@@ -19,17 +19,6 @@ let
overlays = [ cargo2nixOverlay ];
};
- /* Cargo2nix is built for rustOverlay which installs Rust from Mozilla releases.
- This is fine for 64-bit platforms, but for 32-bit platforms, we need our own Rust
- to avoid incompatibilities with time_t between different versions of musl
- (>= 1.2.0 shipped by NixOS, < 1.2.0 with which rustc was built), which lead to compilation breakage.
- So we want a Rust release that is bound to our Nix repository to avoid these problems.
- See here for more info: https://musl.libc.org/time64.html
- Because Cargo2nix does not support the Rust environment shipped by NixOS,
- we emulate the structure of the Rust object created by rustOverlay.
- In practise, rustOverlay ships rustc+cargo in a single derivation while
- NixOS ships them in separate ones. We reunite them with symlinkJoin.
- */
toolchainOptions = {
rustVersion = "1.73.0";
extraRustComponents = [ "clippy" ];