From 5837d09f1195ecbd20ac1fe8b4f2f48b013d91e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Wed, 25 May 2022 09:11:41 +0200 Subject: [PATCH] no longer advertise support for platforms we don't test 32-bit is on life-support anyway --- flake.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/flake.nix b/flake.nix index f725c36..2ae36d9 100644 --- a/flake.nix +++ b/flake.nix @@ -13,12 +13,9 @@ }: let systems = [ "x86_64-linux" - "i686-linux" "x86_64-darwin" "aarch64-darwin" "aarch64-linux" - "armv6l-linux" - "armv7l-linux" ]; forAllSystems = f: nixpkgs.lib.genAttrs systems (system: f system); suffix-version = version: attrs: nixpkgs.lib.mapAttrs' (name: value: nixpkgs.lib.nameValuePair (name + version) value) attrs;