drop i686 support without simplifying code

This commit is contained in:
Alexander Sosedkin 2021-12-15 21:15:25 +01:00
parent c53afdbcbb
commit 7aeb529aab
8 changed files with 13 additions and 15 deletions

View file

@ -12,8 +12,8 @@ with lib;
build = {
arch = mkOption {
type = types.enum [ "aarch64" "i686" ];
default = if pkgs.stdenv.isAarch64 then "aarch64" else "i686";
type = types.enum [ "aarch64" ];
default = "aarch64";
internal = true;
description = "Destination arch.";
};