Unverified Commit 7805f664 authored by Nick Cao's avatar Nick Cao
Browse files

libkrunfw: sev variant is not supported on aarch64-linux

parent 63414176
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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" ];
  };
})