Next-generation FPGA SoC toolkit
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
{ }:
|
|
let
|
|
pkgs = import <nixpkgs> { overlays = [ (import ./overlay.nix) ]; };
|
|
hx = import ./default.nix { inherit pkgs; };
|
|
jobs = hx // {
|
|
inherit (pkgs) yosys nextpnr icestorm trellis llvm_7 rustc cargo cargo-vendor;
|
|
|
|
helloworld_ecp5 = import ./examples/helloworld_ecp5.nix { inherit pkgs hx; };
|
|
helloworld_kintex7 = import ./examples/helloworld_kintex7.nix { inherit pkgs hx; };
|
|
simplesoc_ecp5 = import ./examples/simplesoc_ecp5.nix { inherit pkgs hx; };
|
|
};
|
|
in
|
|
builtins.mapAttrs (name: value: pkgs.lib.hydraJob value) jobs
|