Psionic K

Results 227 comments of Psionic K

PR to fix [nixpkgs](https://github.com/NixOS/nixpkgs/pull/146274) treatment of wasi platform is one to watch. See unstable version here: https://github.com/NixOS/nixpkgs/blob/nixpkgs-unstable/pkgs/build-support/rust/lib/default.nix Issue that brought the Rust triple treatment to light https://github.com/oxalica/rust-overlay/issues/57

mkRustCrate arguments need to be gathered into one attrSet. The bloated signatures are annoying and require updating for the same structure over and over. We should really only need to...

Does this override work or is it just information? Is cargo2nix failing to generate a Cargo.nix?

The error is a cargo message. This is happening at build time? Can you build with vanilla `cargo build`? You can try shelling into the exact build environment by following...

https://github.com/twistedfall/opencv-rust/search?q=opencv-binding-generator The binding generator is listed as a build dependency. I'll have to build the crate to see what's going on. I think cargo2nix should be able to handle this....

~Guess we can support cargo install.~ I've seen people adding cargo2nix to their projects in multiple ways. IMO cargo install is definitely not ever going to be a goal. It's...

Can you outline some example behaviors? On Tue, Mar 30, 2021 at 7:27 PM ollie ***@***.***> wrote: > Currently cargo config file is unceremoniously ignored > > > configureCargo could...

At most, it might make sense to look at the project's in-tree .cargo/config.toml Definitely recommend against using any out-of-tree sources in a project. If we bake the Cargo.nix using a...

@ollie-etl I harvested those changes. My only concern was that we're beginning to pass in so many options that they likely need to go onto a struct. However, I want...

@ollie-etl I'm ready to pull in any changes necessary to get this supported in master. Do you have something to look at that is still valid?