Nix Rust | 698 Members | |
| Rust | 157 Servers |
| Sender | Message | Time |
|---|---|---|
| 24 Oct 2025 | ||
| or we can start now, since niklaskorz was kind enough to make a tracking issue https://github.com/NixOS/nixpkgs/issues/455265 | 18:59:31 | |
| 26 Oct 2025 | ||
| I'm confused. And a Rust (ecosystem) beginner. Is there a way to run cargo udeps on NixOS on a project that uses the stable toolchain? And should I use rustup or not use rustup? I've been developing with a direnv+flake that does For I noticed there's also a | 15:33:09 | |
| * I'm confused. And a Rust (ecosystem) beginner. Is there a way to run cargo udeps on NixOS on a project that uses the stable toolchain? And should I use rustup or not use rustup? I've been developing with a direnv+flake that does For I noticed there's also a | 15:33:34 | |
| * I'm confused. And a Rust (ecosystem) beginner. Is there a way to run cargo udeps on NixOS on a project that uses the stable toolchain? And should I use rustup or not use rustup? I've been developing with a direnv+flake that does For I noticed there's also a | 15:33:50 | |
| (I don't know if this is a related problem, but my rustup unstable toolchain fails to link because it tries to invoke a GCd ld-wrapper from the store.) | 15:34:38 | |
No idea, not familiar with udeps
I would recommend against it and instead recommend either fenix or rust-overlay
This all sounds fine
Yeah you'll hit issues compiling/running stuff that gets installed there. Instead of doing shellHook crimes you should simply never have anything in this directory in the first place. For example, never use
Yeah, the
It probably doesn't require nightly to build, just to run, but that's a guess. Also I think there are some things in nixpkgs that do actually need nightly to build, so that's not too crazy
Likely because it uses the toolchain from your ambient environment (which in this case is a stable toolchain) rather than e.g. being wrapped to force a particular toolchain (which would be awful UX-wise, so that's why it's not done that way) | 17:20:25 | |