tests.minikube: Fix test

This commit is contained in:
adisbladis 2022-05-28 22:10:56 +08:00
parent 6273e2cefb
commit 631293329e

View file

@ -6,7 +6,7 @@
, pkg-config
, which
, libvirt
, vmnet
, darwin
}:
buildGoApplication rec {
@ -26,7 +26,7 @@ buildGoApplication rec {
nativeBuildInputs = [ go-bindata installShellFiles pkg-config which ];
buildInputs = if stdenv.isDarwin then [ vmnet ] else if stdenv.isLinux then [ libvirt ] else null;
buildInputs = if stdenv.isDarwin then [ darwin.apple_sdk.frameworks.vmnet ] else if stdenv.isLinux then [ libvirt ] else null;
buildPhase = ''
make COMMIT=${src.rev}