crosvm: 111.1 -> 112.0

+6 -4
+4 -4
pkgs/applications/virtualization/crosvm/default.nix
··· 4 4 5 5 rustPlatform.buildRustPackage rec { 6 6 pname = "crosvm"; 7 - version = "111.1"; 7 + version = "112.0"; 8 8 9 9 src = fetchgit { 10 10 url = "https://chromium.googlesource.com/chromiumos/platform/crosvm"; 11 - rev = "9ad89972330f70fca5a29967f226cf905977bf7f"; 12 - sha256 = "hvP3V7kzfPXOIe+6GBWupfhW5SM3ifoqmx7dyTgSTeU="; 11 + rev = "014b853ebdba00c7bad751a37fa4271ff2a50d77"; 12 + sha256 = "qVfkNN6dHfMeDYMDvccU9PAz78Dh2ylL6UpoApoYKJw="; 13 13 fetchSubmodules = true; 14 14 }; 15 15 16 16 separateDebugInfo = true; 17 17 18 - cargoSha256 = "S8zeOB+S5ZTuHqWNjxDIa4ev24ose/fByYwPrhR9OY8="; 18 + cargoSha256 = "ath0x9dfQCWWU9+zKyYLC6Q/QXupifHhdQxrS+N2UWw="; 19 19 20 20 nativeBuildInputs = [ 21 21 pkg-config protobuf python3 rustPlatform.bindgenHook wayland-scanner
+2
pkgs/applications/virtualization/crosvm/update.py
··· 27 27 platform_version = [] 28 28 29 29 for line in reader: 30 + if line[cr_stable_index] == "no update": 31 + continue 30 32 this_chrome_version = list(map(int, line[cr_stable_index].split('.'))) 31 33 this_platform_version = list(map(int, line[cros_stable_index].split('.'))) 32 34 chrome_version = max(chrome_version, this_chrome_version)