libvirt: fix build on aarch64-darwin

This commit is contained in:
flurie
2021-11-19 15:57:07 +01:00
committed by Robert Hensing
parent 5e59d5714a
commit af4b47ecd7
2 changed files with 7 additions and 1 deletions
@@ -60,6 +60,8 @@
, ceph
, enableGlusterfs ? false
, glusterfs
, Carbon
, AppKit
}:
with lib;
@@ -152,6 +154,8 @@ stdenv.mkDerivation rec {
] ++ optionals stdenv.isDarwin [
libiconv
gmp
Carbon
AppKit
];
preConfigure =
+3 -1
View File
@@ -18356,7 +18356,9 @@ with pkgs;
libversion = callPackage ../development/libraries/libversion { };
libvirt = callPackage ../development/libraries/libvirt { };
libvirt = callPackage ../development/libraries/libvirt {
inherit (darwin.apple_sdk.frameworks) Carbon AppKit;
};
libvirt_5_9_0 = callPackage ../development/libraries/libvirt/5.9.0.nix { };
libvirt-glib = callPackage ../development/libraries/libvirt-glib { };