From 4e582b1ff5fbea89e16fd158eb6c0b536f315993 Mon Sep 17 00:00:00 2001 From: Timothy DeHerrera Date: Sun, 14 Feb 2021 02:38:41 -0700 Subject: [PATCH] shell: remove cachix from i686-linux Build of cachix is failing on i686-linux right now. Remove it so shell is still usable. --- shell/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/shell/default.nix b/shell/default.nix index 22ce384a..963be9af 100644 --- a/shell/default.nix +++ b/shell/default.nix @@ -42,7 +42,11 @@ pkgs.devshell.mkShell { mapCmd = category: map (mkCommand category); in - mapCmd "main" [ flk cachix git ] ++ + mapCmd "main" + ( + [ flk git ] ++ + lib.optional (system != "i686-linux") cachix + ) ++ mapCmd "linters" [ nixpkgs-fmt editorconfig-checker ] ++ mapCmd "documentation" [ python3Packages.grip mdbook ] ++ [ {