blender/testbeds: re-enable temporarily disabled aarch64-linux variant (#2278)

Re-enable the temporarily disabled upstream broken aarch64-linux Blender
testbed [1] ("Build failure: blender (on aarch64-linux)"), following
upstream commit [2] ("blender: fix build on aarch64-linux (missing sse2neon
dep) (#510887)").

[1]: https://github.com/NixOS/nixpkgs/issues/503387
[2]: b7bd886fc9

Link: https://github.com/nix-community/stylix/pull/2278
Fixes: ce740cf112 ("flake: update all inputs")

Reviewed-by: 0xda157 <da157@voidq.com>
This commit is contained in:
Noah Biewesch 2026-06-06 01:23:29 +02:00 committed by GitHub
parent e14dbcb3e8
commit 3a02d9f736
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3,17 +3,9 @@ let
package = pkgs.blender;
in
{
stylix.testbed = {
# TODO: Re-enable the aarch64-linux variant once the upstream build failure
# [1] ("Build failure: blender (on aarch64-linux)") is resolved.
#
# [1]: https://github.com/NixOS/nixpkgs/issues/503387
enable = pkgs.stdenv.hostPlatform.system != "aarch64-linux";
ui.application = {
name = "blender";
inherit package;
};
stylix.testbed.ui.application = {
name = "blender";
inherit package;
};
environment.systemPackages = [ package ];