diff options
author | Karel Kočí <cynerd@email.cz> | 2023-03-10 09:32:06 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2023-03-10 09:32:41 +0100 |
commit | 42d69ea28a5127941ebf0eaa19e5d33ce3cdd457 (patch) | |
tree | 0ea3c47aa7719b970ba860e9ea3022a4501bbe42 /devShells | |
parent | d0c21ad4a6915ee3cde11b1979cfe9b3c1cfcf56 (diff) | |
download | nixos-personal-42d69ea28a5127941ebf0eaa19e5d33ce3cdd457.tar.gz nixos-personal-42d69ea28a5127941ebf0eaa19e5d33ce3cdd457.tar.bz2 nixos-personal-42d69ea28a5127941ebf0eaa19e5d33ce3cdd457.zip |
devShells/apo: add glibc static
Diffstat (limited to 'devShells')
-rw-r--r-- | devShells/apo.nix | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/devShells/apo.nix b/devShells/apo.nix index b036c9b..c1049a8 100644 --- a/devShells/apo.nix +++ b/devShells/apo.nix @@ -15,19 +15,12 @@ }; }; }; - #mipsPkgs = import nixpkgs.outPath { - # localSystem = system; - # crossSystem = { - # config = "mips-none-elf"; - # libc = "newlib-nano"; - # }; - #}; in pkgs.buildPackages.mkShell { packages = with pkgs; [ qtrvsim + glibc.static riscvPkgs.buildPackages.gcc - #mipsPkgs.buildPackages.gcc ]; inputsFrom = [default c]; meta.platforms = nixpkgs.lib.platforms.linux; |