summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2024-02-10 11:48:40 +0100
committerAlyssa Ross <hi@alyssa.is>2024-02-15 20:37:24 +0100
commit893ac5926196d9d6803b189aecc3b01802f4ec0f (patch)
tree247cf5ecaa5d4305b287bf5e94954225e37b308d
parent99bc00dc96062dfd958327d1dfac7e2035a7d204 (diff)
crosvm: 120.0 -> 121.3
-rw-r--r--pkgs/applications/virtualization/crosvm/default.nix20
1 files changed, 5 insertions, 15 deletions
diff --git a/pkgs/applications/virtualization/crosvm/default.nix b/pkgs/applications/virtualization/crosvm/default.nix
index 95cada54296a..3e70bd390e16 100644
--- a/pkgs/applications/virtualization/crosvm/default.nix
+++ b/pkgs/applications/virtualization/crosvm/default.nix
@@ -1,32 +1,22 @@
-{ lib, rustPlatform, fetchgit, fetchpatch
+{ lib, rustPlatform, fetchgit
, pkg-config, protobuf, python3, wayland-scanner
, libcap, libdrm, libepoxy, minijail, virglrenderer, wayland, wayland-protocols
}:
rustPlatform.buildRustPackage rec {
pname = "crosvm";
- version = "120.0";
+ version = "121.3";
src = fetchgit {
url = "https://chromium.googlesource.com/chromiumos/platform/crosvm";
- rev = "0a9d1cb8be29e49c355ea8b18cd58506dbbaf6e5";
- sha256 = "BbCcsxJU25VgWVday4rGPXaJSuAWebNGo3MiYPIBBto=";
+ rev = "1e7125327a29b7b7a0593caf339d382728c55cf6";
+ sha256 = "Rjs46TtOhFZxqnEyqa4IyrRs7HnDZ/DJZ9DPEe7Oux0=";
fetchSubmodules = true;
};
- patches = [
- (fetchpatch {
- name = "test-page-size-fix.patch";
- url = "https://chromium.googlesource.com/crosvm/crosvm/+/d9bc6e99ff5ac31d7d88b684c938af01a0872fc1%5E%21/?format=TEXT";
- decode = "base64 -d";
- includes = [ "src/crosvm/config.rs" ];
- hash = "sha256-3gfNzp0WhtNr+8CWSISCJau208EMIo3RJhM+4SyeV3o=";
- })
- ];
-
separateDebugInfo = true;
- cargoHash = "sha256-YXfKZeRL3gfWztf36lVNbCCwUqW+0w3q7X7v0arCrvk=";
+ cargoHash = "sha256-7nfeg/q8baLvB0CoRWKU60TRfLAaRkeRxGojPvKpOLs=";
nativeBuildInputs = [
pkg-config protobuf python3 rustPlatform.bindgenHook wayland-scanner