# SPDX-FileCopyrightText: 2022 Unikie # SPDX-FileCopyrightText: 2023-2025 Alyssa Ross # SPDX-License-Identifier: MIT import ../../lib/overlay-package.nix [ "cloud-hypervisor" ] ({ final, super }: super.cloud-hypervisor.overrideAttrs (oldAttrs: rec { cargoDeps = final.rustPlatform.fetchCargoVendor { inherit patches; inherit (oldAttrs) src; hash = "sha256-ZNj1H3Iq+IUSe0McHJjrwPOoR+YRB+rsSmZHMhXsHy0="; }; patches = oldAttrs.patches or [] ++ [ ./gpu.patch ]; }))