docker-machine-hyperkit: disable on aarch64-darwin

It's not supported in upstream, see
https://github.com/kubernetes/minikube/blob/master/pkg/minikube/driver/driver_darwin.go#L27-L35
This commit is contained in:
Yuriy Taraday 2023-11-06 12:03:44 +01:00
parent ef0fa8ffdc
commit 6e1795e145

View file

@ -18,6 +18,6 @@ buildGoModule rec {
description = "HyperKit driver for docker-machine"; description = "HyperKit driver for docker-machine";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ atkinschang ]; maintainers = with maintainers; [ atkinschang ];
platforms = platforms.darwin; platforms = [ "x86_64-darwin" ];
}; };
} }