Merge pull request #204130 from wegank/qt3d-aarch64-darwin

authored by Sandro and committed by GitHub c8e95c01 9125a8b5

+3 -2
-1
pkgs/applications/misc/sioyek/default.nix
··· 78 license = licenses.gpl3Only; 79 maintainers = with maintainers; [ podocarp ]; 80 platforms = platforms.unix; 81 - broken = stdenv.isDarwin && stdenv.isAarch64; 82 }; 83 })
··· 78 license = licenses.gpl3Only; 79 maintainers = with maintainers; [ podocarp ]; 80 platforms = platforms.unix; 81 }; 82 })
+3 -1
pkgs/development/libraries/qt-5/modules/qt3d.nix
··· 1 - { qtModule, qtbase, qtdeclarative }: 2 3 qtModule { 4 pname = "qt3d"; 5 qtInputs = [ qtbase qtdeclarative ]; 6 outputs = [ "out" "dev" "bin" ]; 7 }
··· 1 + { lib, stdenv, qtModule, qtbase, qtdeclarative }: 2 3 qtModule { 4 pname = "qt3d"; 5 qtInputs = [ qtbase qtdeclarative ]; 6 outputs = [ "out" "dev" "bin" ]; 7 + # error: use of undeclared identifier 'stat64' 8 + NIX_CFLAGS_COMPILE = lib.optionalString (stdenv.isDarwin && stdenv.isAarch64) "-Dstat64=stat"; 9 }