Replies: 3 comments
-
No. There might be many meanings to 'homeless shelter', but here I'm 99% sure this specific So, something broke building of this derivation. Please ensure that the derivation in question can be built with regular Nix running on NixOS or regular Linux. https://hydra.nixos.org might be of help if you don't have access to any other PCs. Then, please report the issue to nixpkgs or wherever it is packaged. Until that's resolved, you can try to either not build it or use an older version of nixpkgs or something. I'd try building the offending derivation somewhere else myself, but the log is too short and I have no idea what are you building. And
While I'm glad you like it, this issue tracker is for nix-on-droid magic specifically and not for the whole nixpkgs made available through it. |
Beta Was this translation helpful? Give feedback.
-
... or maybe whatever you're building took a wrong turn even earlier, because 0.1.0 version of the base64 crate is 9 years old and almost certainly should not be used in 2024. Anyway, please find out what exactly in your config causes nix-on-droid to build the problematic derivation, find out where does it come from, report the issue there and either fix the issue or stay on the latest working version until it's fixed. |
Beta Was this translation helpful? Give feedback.
-
Yep, I'm building an elixir project that depends on a couple rust libraries, and the error always came during a rustler compilation step, building NIF definitions. I'm unsure the reason beamPackages = pkgs.beamPackages;
deps = import ./deps.nix { inherit lib beamPackages; overrides = changes; };
changes = (self: super: {
egit = super.egit.override { nativeBuildInputs = with pkgs; [ libgit2.dev git ]; env.HOME = "/data/data/com.termux.nix/files/home"; };
mdex = super.mdex.override { nativeBuildInputs = with pkgs; [ cacert cargo openssl rustc]; env.HOME = "/data/data/com.termux.nix/files/home"; };
rustler = super.rustler.override { nativeBuildInputs = with pkgs; [ cacert cargo openssl rustc]; env.HOME = "/data/data/com.termux.nix/files/home"; };
}); Specifically using the |
Beta Was this translation helpful? Give feedback.
-
During a local flake compilation, some rust process ends in an error;
nix log ....
displays:I guess my only clue is this
/homeless-shelter
path; does this seem like anix-on-droid
concept? Seems like no searches are going to have any luck, especially because homeless shelters are an emergent gameplay mechanic for the Rust videogame.I am super perplexed; besides this
nix-on-droid
seems superb and I hope I can keep up on client contracts as I travel, leaving my main computer back at home in the lab.Beta Was this translation helpful? Give feedback.
All reactions