lol
1{ stdenv, fetchurl }:
2
3let
4 imgroot = "https://web.archive.org/web/20211027150924/https://anbox.postmarketos.org";
5in
6 {
7 armv7l-linux = fetchurl {
8 url = imgroot + "/android-7.1.2_r39.1-anbox_armv7a_neon-userdebug.img";
9 sha256 = "1bgzqw4yp52a2q40dr1jlay1nh73jl5mx6wqsxvpb09xghxsng0a";
10 };
11 aarch64-linux = fetchurl {
12 url = imgroot + "/android-7.1.2_r39-anbox_arm64-userdebug.img";
13 sha256 = "0dx8mhfcjbkak982zfh65bvy35slz5jk31yl4ara50ryrxsp32nx";
14 };
15 x86_64-linux = fetchurl {
16 url = imgroot + "/android-7.1.2_r39-anbox_x86_64-userdebug.img";
17 sha256 = "16vmiz5al2r19wjpd44nagvz7d901ljxdms8gjp2w4xz1d91vzpm";
18 };
19 }.${stdenv.system} or (throw "Unsupported platform ${stdenv.system}")