From bc59f1626ef14a9dadfdebdd582116640bf831e1 Mon Sep 17 00:00:00 2001 From: Nick Cao Date: Sat, 13 Jan 2024 18:47:39 -0500 Subject: [PATCH] gfxstream: inherit aemu platforms --- pkgs/development/libraries/gfxstream/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/gfxstream/default.nix b/pkgs/development/libraries/gfxstream/default.nix index bb88fe9f8496..196bca7cdc5f 100644 --- a/pkgs/development/libraries/gfxstream/default.nix +++ b/pkgs/development/libraries/gfxstream/default.nix @@ -29,6 +29,6 @@ stdenv.mkDerivation { description = "Graphics Streaming Kit"; license = licenses.free; # https://android.googlesource.com/platform/hardware/google/gfxstream/+/refs/heads/main/LICENSE maintainers = with maintainers; [ qyliss ]; - platforms = platforms.darwin ++ platforms.linux; + platforms = aemu.meta.platforms; }; }