You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
563 B
Nix
16 lines
563 B
Nix
{ }:
|
|
let
|
|
pkgs = import <nixpkgs> { overlays = [ import ./overlay.nix ]; };
|
|
derivations = import ./derivations.nix { inherit pkgs; };
|
|
jobs = derivations // {
|
|
rustc = pkgs.rustc;
|
|
cargo = pkgs.cargo;
|
|
cargo-vendor = pkgs.cargo-vendor;
|
|
|
|
helloworld_ecp5 = import ./examples/helloworld_ecp5.nix { inherit pkgs; };
|
|
helloworld_kintex7 = import ./examples/helloworld_kintex7.nix { inherit pkgs; };
|
|
simplesoc_ecp5 = import ./examples/simplesoc_ecp5.nix { inherit pkgs; };
|
|
};
|
|
in
|
|
builtins.mapAttrs (name: value: pkgs.lib.hydraJob value) jobs
|