aboutsummaryrefslogtreecommitdiff
path: root/develop/default.nix
blob: 421250f8b011e787c996a86a756d3c2e742951a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ 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";
  riscv = callDevelop ./riscv.nix;

}