From 7805f664190193c6d3e268dafb16bbcb2dc2cda9 Mon Sep 17 00:00:00 2001 From: Nick Cao Date: Wed, 2 Oct 2024 09:25:18 -0400 Subject: [PATCH] libkrunfw: sev variant is not supported on aarch64-linux --- pkgs/development/libraries/libkrunfw/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/libkrunfw/default.nix b/pkgs/development/libraries/libkrunfw/default.nix index 3b0892ec4808..f0341685b5e4 100644 --- a/pkgs/development/libraries/libkrunfw/default.nix +++ b/pkgs/development/libraries/libkrunfw/default.nix @@ -63,6 +63,6 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://github.com/containers/libkrunfw"; license = with licenses; [ lgpl2Only lgpl21Only ]; maintainers = with maintainers; [ nickcao RossComputerGuy ]; - platforms = [ "x86_64-linux" "aarch64-linux" ]; + platforms = [ "x86_64-linux" ] ++ lib.optionals (!sevVariant) [ "aarch64-linux" ]; }; })