From cee9caa1ccdbfb774dc9cd5a631d7c48f826e457 Mon Sep 17 00:00:00 2001 From: Nick Cao Date: Wed, 2 Nov 2022 18:53:19 +0800 Subject: [PATCH] libkrunfw: remove aarch64-linux from platforms --- 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 155632e53ee8..83041a4b1cc8 100644 --- a/pkgs/development/libraries/libkrunfw/default.nix +++ b/pkgs/development/libraries/libkrunfw/default.nix @@ -53,6 +53,6 @@ stdenv.mkDerivation rec { homepage = "https://github.com/containers/libkrunfw"; license = with licenses; [ lgpl2Only lgpl21Only ]; maintainers = with maintainers; [ nickcao ]; - platforms = [ "x86_64-linux" "aarch64-linux" "aarch64-darwin" ]; + platforms = [ "x86_64-linux" "aarch64-darwin" ]; }; }