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.
10 lines
434 B
10 lines
434 B
{ pkgs ? import <nixpkgs> {}}:
|
|
let
|
|
derivations = import ./derivations.nix { inherit pkgs; };
|
|
jobs = derivations // {
|
|
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
|
|
|