From b86683efa4ed7ce7fe57f50f1ee018c9a4d96160 Mon Sep 17 00:00:00 2001 From: Gabriella Gonzalez Date: Fri, 23 Sep 2022 15:24:04 -0700 Subject: [PATCH] Remove i686 from `nix-serve-ng.cabal` (#9) Hackage does not accept `.cabal` files with this architecture --- nix-serve-ng.cabal | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/nix-serve-ng.cabal b/nix-serve-ng.cabal index 9ed76dc..024149c 100644 --- a/nix-serve-ng.cabal +++ b/nix-serve-ng.cabal @@ -19,9 +19,7 @@ executable nix-serve , Options -- https://nixos.org/manual/nix/stable/installation/supported-platforms.html - if arch(i686) && os(linux) - cxx-options: -DSYSTEM="i686-linux" - elif arch(x86_64) && os(linux) + if arch(x86_64) && os(linux) cxx-options: -DSYSTEM="x86_64-linux" elif arch(aarch64) && os(linux) cxx-options: -DSYSTEM="aarch64-linux"