From 0a627518a9d18a9e2d6035217f890b89f0495d27 Mon Sep 17 00:00:00 2001
From: Jean-Paul Calderone <exarkun@twistedmatrix.com>
Date: Mon, 13 Feb 2023 15:07:15 -0500
Subject: [PATCH] It's fine ... please try to build for these platforms

---
 obelisk/nixpkgs-overlay.nix | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/obelisk/nixpkgs-overlay.nix b/obelisk/nixpkgs-overlay.nix
index f43f5bd..13be099 100644
--- a/obelisk/nixpkgs-overlay.nix
+++ b/obelisk/nixpkgs-overlay.nix
@@ -40,6 +40,13 @@
       # flags but they changes are not appropriate for our version of the
       # source.  Disable that change.
       postPatch = null;
+
+      meta = old // {
+        # The derivation declares its supported platforms and they don't
+        # include the ones we need for Android.  Adjust that declaration so
+        # that it does.
+        platforms = old.meta.platforms ++ [ "aarch64-linux" "armv7a-linux" ];
+      };
     });
 
   # For whatever reason, it seems callCabal2nix for tahoe-chk wants to use the
-- 
GitLab