Commit 7b3f59b9 authored by Alyssa Ross's avatar Alyssa Ross
Browse files

crosvm: 121.3 -> 122.1

The virgl_renderer_next feature has been removed.
parent 783d86af
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
@@ -5,18 +5,18 @@

rustPlatform.buildRustPackage rec {
  pname = "crosvm";
  version = "121.3";
  version = "122.1";

  src = fetchgit {
    url = "https://chromium.googlesource.com/chromiumos/platform/crosvm";
    rev = "1e7125327a29b7b7a0593caf339d382728c55cf6";
    sha256 = "Rjs46TtOhFZxqnEyqa4IyrRs7HnDZ/DJZ9DPEe7Oux0=";
    rev = "562d81eb28a49ed6e0d771a430c21a458cdd33f9";
    sha256 = "l5sIUInOhhkn3ernQLIEwEpRCyICDH/1k4C/aidy1/I=";
    fetchSubmodules = true;
  };

  separateDebugInfo = true;

  cargoHash = "sha256-7nfeg/q8baLvB0CoRWKU60TRfLAaRkeRxGojPvKpOLs=";
  cargoHash = "sha256-2MaRfQCAjW560sdAPqdWymClwY1U5QjIMzknHry+9zs=";

  nativeBuildInputs = [
    pkg-config protobuf python3 rustPlatform.bindgenHook wayland-scanner
@@ -30,9 +30,10 @@ rustPlatform.buildRustPackage rec {
    patchShebangs third_party/minijail/tools/*.py
  '';

  CROSVM_USE_SYSTEM_MINIGBM = true;
  CROSVM_USE_SYSTEM_VIRGLRENDERER = true;

  buildFeatures = [ "default" "virgl_renderer" "virgl_renderer_next" ];
  buildFeatures = [ "virgl_renderer" ];

  passthru.updateScript = ./update.py;