Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

aemu: restrict to supported platforms

Nick Cao 109305ab c6f2b53e

+2 -1
+2 -1
pkgs/development/libraries/aemu/default.nix
··· 28 28 # The BSD license comes from host-common/VpxFrameParser.cpp, which 29 29 # incorporates some code from libvpx, which uses the 3-clause BSD license. 30 30 license = with licenses; [ asl20 mit bsd3 ]; 31 - platforms = platforms.darwin ++ platforms.linux; 31 + # See base/include/aemu/base/synchronization/Lock.h 32 + platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ]; 32 33 }; 33 34 }