diff options
-rw-r--r-- | devShells/apo.nix | 16 | ||||
-rw-r--r-- | devShells/default.nix | 2 |
2 files changed, 9 insertions, 9 deletions
diff --git a/devShells/apo.nix b/devShells/apo.nix index dd8b772..b036c9b 100644 --- a/devShells/apo.nix +++ b/devShells/apo.nix @@ -15,19 +15,19 @@ }; }; }; - mipsPkgs = import nixpkgs.outPath { - localSystem = system; - crossSystem = { - config = "mips-none-elf"; - libc = "newlib-nano"; - }; - }; + #mipsPkgs = import nixpkgs.outPath { + # localSystem = system; + # crossSystem = { + # config = "mips-none-elf"; + # libc = "newlib-nano"; + # }; + #}; in pkgs.buildPackages.mkShell { packages = with pkgs; [ qtrvsim riscvPkgs.buildPackages.gcc - mipsPkgs.buildPackages.gcc + #mipsPkgs.buildPackages.gcc ]; inputsFrom = [default c]; meta.platforms = nixpkgs.lib.platforms.linux; diff --git a/devShells/default.nix b/devShells/default.nix index e0c0dff..dd41d2a 100644 --- a/devShells/default.nix +++ b/devShells/default.nix @@ -22,7 +22,7 @@ espc = callDevelop ./nuttx.nix {arch = "rv32imc";}; c = callDevelop ./c.nix {}; qt = callDevelop ./qt.nix {}; - #apo = callDevelop ./apo.nix { }; + apo = callDevelop ./apo.nix { }; }; in shells |