2021-04-04 19:37:00 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, rustPlatform, pkg-config, dtc, openssl }:
|
2020-07-20 13:03:35 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "cloud-hypervisor";
|
2023-08-17 00:22:06 +00:00
|
|
|
version = "34.0";
|
2020-07-20 13:03:35 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "cloud-hypervisor";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2023-08-17 00:22:06 +00:00
|
|
|
sha256 = "sha256-+uicO6tPLzwlA4/Fao2J8n82Qnt3C6OfqRxn1pVh7XE=";
|
2020-07-20 13:03:35 +00:00
|
|
|
};
|
|
|
|
|
2023-03-25 23:16:46 +00:00
|
|
|
cargoLock = {
|
|
|
|
lockFile = ./Cargo.lock;
|
|
|
|
outputHashes = {
|
2023-07-07 18:20:35 +00:00
|
|
|
"acpi_tables-0.1.0" = "sha256-OdtnF2fV6oun3NeCkXdaGU3U7ViBcgFKqHKdyZsRsPA=";
|
2023-03-25 23:16:46 +00:00
|
|
|
"kvm-bindings-0.6.0" = "sha256-wGdAuPwsgRIqx9dh0m+hC9A/Akz9qg9BM+p06Fi5ACM=";
|
2023-04-19 17:47:13 +00:00
|
|
|
"kvm-ioctls-0.13.0" = "sha256-jHnFGwBWnAa2lRu4a5eRNy1Y26NX5MV8alJ86VR++QE=";
|
2023-03-25 23:16:46 +00:00
|
|
|
"micro_http-0.1.0" = "sha256-w2witqKXE60P01oQleujmHSnzMKxynUGKWyq5GEh1Ew=";
|
2023-08-17 00:22:06 +00:00
|
|
|
"mshv-bindings-0.1.1" = "sha256-9Q7IXznZ+qdf/d4gO7qVEjbNUUygQDNYLNxz2BECLHc=";
|
2023-07-07 18:20:35 +00:00
|
|
|
"versionize_derive-0.1.4" = "sha256-oGuREJ5+FDs8ihmv99WmjIPpL2oPdOr4REk6+7cV/7o=";
|
|
|
|
"vfio-bindings-0.4.0" = "sha256-8zdpLD9e1TAwG+m6ifS7/Fh39fAs5VxtnS5gUj/eKmY=";
|
|
|
|
"vfio_user-0.1.0" = "sha256-b/gL6vPMW44O44lBIjqS+hgqVUUskBmttGk5UKIMgZk=";
|
|
|
|
"vhost-0.7.0" = "sha256-KdVROh44UzZJqtzxfM6gwAokzY6El8iDPfw2nnkmhiQ=";
|
2023-08-17 00:22:06 +00:00
|
|
|
"vm-fdt-0.2.0" = "sha256-lKW4ZUraHomSDyxgNlD5qTaBTZqM0Fwhhh/08yhrjyE=";
|
2023-03-25 23:16:46 +00:00
|
|
|
};
|
|
|
|
};
|
2022-03-06 13:17:38 +00:00
|
|
|
|
2023-04-07 11:18:13 +00:00
|
|
|
separateDebugInfo = true;
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ openssl ] ++ lib.optional stdenv.isAarch64 dtc;
|
|
|
|
|
2022-03-06 13:17:38 +00:00
|
|
|
OPENSSL_NO_VENDOR = true;
|
2022-01-22 21:41:41 +00:00
|
|
|
|
|
|
|
# Integration tests require root.
|
|
|
|
cargoTestFlags = [ "--bins" ];
|
2020-07-20 13:03:35 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/cloud-hypervisor/cloud-hypervisor";
|
|
|
|
description = "Open source Virtual Machine Monitor (VMM) that runs on top of KVM";
|
|
|
|
changelog = "https://github.com/cloud-hypervisor/cloud-hypervisor/releases/tag/v${version}";
|
|
|
|
license = with licenses; [ asl20 bsd3 ];
|
2021-04-04 19:37:00 +00:00
|
|
|
maintainers = with maintainers; [ offline qyliss ];
|
|
|
|
platforms = [ "aarch64-linux" "x86_64-linux" ];
|
2020-07-20 13:03:35 +00:00
|
|
|
};
|
|
|
|
}
|