aboutsummaryrefslogtreecommitdiff
path: root/develop/nuttx.nix
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2022-06-13 08:18:32 +0200
committerKarel Kočí <cynerd@email.cz>2022-06-13 08:18:32 +0200
commit4fa33b32e2567276f84a8ef49cb01328db801fe2 (patch)
treefc000dbb83383660d4090c5f2a1b1659bd168206 /develop/nuttx.nix
parentef2e9a31c61afdbb106eea365b1758a1c1ceadca (diff)
downloadnixos-personal-4fa33b32e2567276f84a8ef49cb01328db801fe2.tar.gz
nixos-personal-4fa33b32e2567276f84a8ef49cb01328db801fe2.tar.bz2
nixos-personal-4fa33b32e2567276f84a8ef49cb01328db801fe2.zip
devShells/c: add
Diffstat (limited to 'develop/nuttx.nix')
-rw-r--r--develop/nuttx.nix23
1 files changed, 0 insertions, 23 deletions
diff --git a/develop/nuttx.nix b/develop/nuttx.nix
deleted file mode 100644
index 3066997..0000000
--- a/develop/nuttx.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{ nixpkgs, shellrc, system }: arch:
-let
- pkgs = nixpkgs.legacyPackages.${system};
- pkgs-riscv = import nixpkgs.outPath {
- localSystem = system;
- crossSystem = {
- config = "arm-none-eabi";
- libc = "newlib";
- gcc = {
- arch = arch;
- };
- };
- };
-
-in pkgs.mkShell {
- packages = (with pkgs; [
- kconfig-frontends
- ]) ++ (with pkgs-riscv.buildPackages; [
- gcc gdb
- ]);
- inputsFrom = [ shellrc.packages.${system}.default ];
- meta.platforms = nixpkgs.lib.platforms.linux;
-}