You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For nixos-rebuild, add the following to your configuration.nix:
{nixpkgs.config.allowUnsupportedSystem=true;}
For nix-env, nix-build, nix-shell, or any other Nix command, add this to ~/.config/nixpkgs/config.nix:
{allowUnsupportedSystem=true;}
Expected Behavior
Freetube should build and run on aarch64-apple-darwin or provide a clear reason why it is explicitly marked as unsupported.
Additional Information
System Info:aarch64-apple-darwin
Nixpkgs Commit: (please specify if possible)
Relevant Logs: (if applicable)
Suggested Fix
Review the package's meta.platforms and meta.badPlatforms settings to determine if aarch64-apple-darwin should be supported or if additional dependencies are required for compatibility.
Description
When attempting to install
freetube-0.23.2
onaarch64-apple-darwin
, Nix refuses to evaluate the package due to platform incompatibility.Error Message
Steps to Reproduce
aarch64-apple-darwin
:Workarounds
Temporary Override
You can use an environment variable to temporarily allow unsupported packages:
export NIXPKGS_ALLOW_UNSUPPORTED_SYSTEM=1 nix build nixpkgs#freetube --impure
Persistent Override
nixos-rebuild
, add the following to yourconfiguration.nix
:nix-env
,nix-build
,nix-shell
, or any other Nix command, add this to~/.config/nixpkgs/config.nix
:Expected Behavior
Freetube should build and run on
aarch64-apple-darwin
or provide a clear reason why it is explicitly marked as unsupported.Additional Information
aarch64-apple-darwin
Suggested Fix
Review the package's
meta.platforms
andmeta.badPlatforms
settings to determine ifaarch64-apple-darwin
should be supported or if additional dependencies are required for compatibility.References
The text was updated successfully, but these errors were encountered: