From 7a2c1efd5d74eacab39c2cef3fa9ced58510da69 Mon Sep 17 00:00:00 2001 From: Erik Arvstedt Date: Sun, 18 Dec 2022 13:13:43 +0100 Subject: [PATCH] flake: remove 32-bit systems --- flake.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index d8b05da..ece19d6 100644 --- a/flake.nix +++ b/flake.nix @@ -19,9 +19,11 @@ let supportedSystems = [ "x86_64-linux" - "i686-linux" "aarch64-linux" - "armv7l-linux" + # On these 32-bit platforms, Python pkg `pymemcache` 4.0.0 (required by + # `joinmarket`) is broken: + # "i686-linux" + # "armv7l-linux" ]; test = import ./test/tests.nix nixpkgs.lib;