We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Compiling using the Nix package manager on musl panics:-
musl
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: Os { code: 13, kind: PermissionDenied, message: "Permission denied" }', /nix/store/3bcpw5cb4pibbj8hc1z21m5i9rxa9s3r-crates-io/openssl-src-111.22.0+1.1.1q/src/lib.rs:547:26
This is because of
fs::write(path, buf).unwrap();
which tries to overwrite crypto/rand/rand_unix.c. Nix mounts /nix/store readonly.
crypto/rand/rand_unix.c
/nix/store
The text was updated successfully, but these errors were encountered:
I worked around this by setting OPENSSL_NO_VENDOR to skip this crate.
OPENSSL_NO_VENDOR
Sorry, something went wrong.
No branches or pull requests
Compiling using the Nix package manager on
musl
panics:-This is because of
which tries to overwrite
crypto/rand/rand_unix.c
. Nix mounts/nix/store
readonly.The text was updated successfully, but these errors were encountered: