Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #311304 from alyssais/glib-introspection-cross-endian

glib: disable introspection for cross-endian

authored by Artturin and committed by GitHub dcdbcb67 7bfa0877

+4 -1
+4 -1
pkgs/development/libraries/glib/default.nix
··· 23 23 , testers 24 24 , gobject-introspection 25 25 , mesonEmulatorHook 26 - , withIntrospection ? stdenv.hostPlatform.emulatorAvailable buildPackages && lib.meta.availableOn stdenv.hostPlatform gobject-introspection 26 + , withIntrospection ? 27 + stdenv.hostPlatform.emulatorAvailable buildPackages && 28 + lib.meta.availableOn stdenv.hostPlatform gobject-introspection && 29 + stdenv.hostPlatform.isLittleEndian == stdenv.buildPlatform.isLittleEndian 27 30 }: 28 31 29 32 assert stdenv.isLinux -> util-linuxMinimal != null;