about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/anbox/postmarketos-image.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/os-specific/linux/anbox/postmarketos-image.nix')
-rw-r--r--pkgs/os-specific/linux/anbox/postmarketos-image.nix19
1 files changed, 0 insertions, 19 deletions
diff --git a/pkgs/os-specific/linux/anbox/postmarketos-image.nix b/pkgs/os-specific/linux/anbox/postmarketos-image.nix
deleted file mode 100644
index 648a1a5ea9a0..000000000000
--- a/pkgs/os-specific/linux/anbox/postmarketos-image.nix
+++ /dev/null
@@ -1,19 +0,0 @@
-{ stdenv, fetchurl }:
-
-let
-  imgroot = "https://web.archive.org/web/20211027150924/https://anbox.postmarketos.org";
-in
-  {
-    armv7l-linux = fetchurl {
-      url = imgroot + "/android-7.1.2_r39.1-anbox_armv7a_neon-userdebug.img";
-      sha256 = "1bgzqw4yp52a2q40dr1jlay1nh73jl5mx6wqsxvpb09xghxsng0a";
-    };
-    aarch64-linux = fetchurl {
-      url = imgroot + "/android-7.1.2_r39-anbox_arm64-userdebug.img";
-      sha256 = "0dx8mhfcjbkak982zfh65bvy35slz5jk31yl4ara50ryrxsp32nx";
-    };
-    x86_64-linux = fetchurl {
-      url = imgroot + "/android-7.1.2_r39-anbox_x86_64-userdebug.img";
-      sha256 = "16vmiz5al2r19wjpd44nagvz7d901ljxdms8gjp2w4xz1d91vzpm";
-    };
-  }.${stdenv.system} or (throw "Unsupported platform ${stdenv.system}")