aboutsummaryrefslogtreecommitdiff
path: root/devShells/default.nix
blob: 108d6a34ac459884bf923d33cf31b2cdac552049 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ nixpkgs, shellrc, system }:
let

  callDevelop = file: import file {
    inherit nixpkgs;
    inherit shellrc;
    inherit system;
  };

in {

  armv6 = callDevelop ./nuttx.nix "armv6-m";
  armv7e = callDevelop ./nuttx.nix "armv7e-m";
  c = callDevelop ./c.nix;
  riscv = callDevelop ./riscv.nix;

}