flake: remove 32-bit systems

This commit is contained in:
Erik Arvstedt 2022-12-18 13:13:43 +01:00 committed by Greg Shuflin
parent 2156b4410d
commit 7a2c1efd5d
1 changed files with 4 additions and 2 deletions

View File

@ -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;