diff --git a/release.nix b/release.nix index 21bcdc0..cab9867 100644 --- a/release.nix +++ b/release.nix @@ -1,5 +1,9 @@ { pkgs ? import {}}: 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; }; + }; in - builtins.mapAttrs (name: value: pkgs.lib.hydraJob value) derivations + builtins.mapAttrs (name: value: pkgs.lib.hydraJob value) jobs