diff --git a/hydra/artiq.nix b/hydra/artiq.nix index b2064da..733a694 100644 --- a/hydra/artiq.nix +++ b/hydra/artiq.nix @@ -96,7 +96,7 @@ "zynq": { "enabled": 1, "hidden": false, - "description": "ARTIQ on the Zynq-based ZC706 board", + "description": "ARTIQ on Zynq", "nixexprinput": "nixScripts", "nixexprpath": "zynq.nix", "checkinterval": 300, @@ -109,7 +109,7 @@ "nixScripts": { "type": "git", "value": "https://git.m-labs.hk/M-Labs/nix-scripts.git", "emailresponsible": false }, "mozillaOverlay": { "type": "git", "value": "git://github.com/mozilla/nixpkgs-mozilla", "emailresponsible": false }, "artiq-fast": { "type": "sysbuild", "value": "artiq:fast-beta:generated-nix", "emailresponsible": false }, - "zc706": { "type": "git", "value": "https://git.m-labs.hk/M-Labs/zc706.git", "emailresponsible": false }, + "zynq-rs": { "type": "git", "value": "https://git.m-labs.hk/M-Labs/zynq-rs.git", "emailresponsible": false }, "artiq-zynq": { "type": "git", "value": "https://git.m-labs.hk/M-Labs/artiq-zynq.git", "emailresponsible": false } } } diff --git a/zynq.nix b/zynq.nix index 7140129..ffc6033 100644 --- a/zynq.nix +++ b/zynq.nix @@ -1,6 +1,6 @@ let pkgs = import {}; - zc706 = import { mozillaOverlay = import ; }; + zynq-rs = import { mozillaOverlay = import ; }; artiq-zynq = import { mozillaOverlay = import ; }; artiq-fast = import { inherit pkgs; }; addBuildProducts = drv: drv.overrideAttrs (oldAttrs: { @@ -18,7 +18,7 @@ in pkgs.lib.hydraJob ( addBuildProducts drv ) - ) zc706.zc706 + ) zynq-rs.zc706 ) // ( builtins.mapAttrs (key: value: pkgs.lib.hydraJob value) artiq-zynq ) // {