mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-13 19:07:38 +00:00
treewide: withIntrospection (host == build) -> (host.emulatorAvailable buildPackages)
cross-os (like linux -> *BSD) doesn't have emulators
This commit is contained in:
parent
6169ccb87d
commit
f69a8fabf1
@ -9,7 +9,8 @@
|
||||
, help2man
|
||||
, systemd
|
||||
, bash-completion
|
||||
, withIntrospection ? stdenv.hostPlatform == stdenv.buildPlatform
|
||||
, buildPackages
|
||||
, withIntrospection ? stdenv.hostPlatform.emulatorAvailable buildPackages
|
||||
, gobject-introspection
|
||||
}:
|
||||
|
||||
|
@ -8,7 +8,8 @@
|
||||
, glib
|
||||
, gdk-pixbuf
|
||||
, gnome
|
||||
, withIntrospection ? (stdenv.buildPlatform == stdenv.hostPlatform)
|
||||
, buildPackages
|
||||
, withIntrospection ? stdenv.hostPlatform.emulatorAvailable buildPackages
|
||||
, gobject-introspection
|
||||
}:
|
||||
|
||||
|
@ -20,7 +20,8 @@
|
||||
, python3Packages
|
||||
, gnome
|
||||
, vala
|
||||
, withIntrospection ? stdenv.hostPlatform == stdenv.buildPlatform
|
||||
, buildPackages
|
||||
, withIntrospection ? stdenv.hostPlatform.emulatorAvailable buildPackages
|
||||
, gobject-introspection
|
||||
, _experimental-update-script-combinators
|
||||
, common-updater-scripts
|
||||
|
@ -10,7 +10,8 @@
|
||||
, libcap_ng
|
||||
, libvirt
|
||||
, libxml2
|
||||
, withIntrospection ? stdenv.hostPlatform == stdenv.buildPlatform
|
||||
, buildPackages
|
||||
, withIntrospection ? stdenv.hostPlatform.emulatorAvailable buildPackages
|
||||
, gobject-introspection
|
||||
, withDocs ? stdenv.hostPlatform == stdenv.buildPlatform
|
||||
, gtk-doc
|
||||
|
Loading…
Reference in New Issue
Block a user