nix: fix hydra channel

pull/1278/head
Sebastien Bourdeauducq 2019-02-13 20:50:08 +08:00
parent 0b08baef10
commit af9988c79c
1 changed files with 7 additions and 6 deletions

View File

@ -35,11 +35,12 @@ let
src = ../.;
recipe = "conda/artiq";
};
mainchannel = pkgs.releaseTools.channel {
name = "mainchannel";
src = ./.;
constituents = [ ];
};
} // boardJobs // artiqPkgs;
in
jobs
jobs // {
channel = pkgs.releaseTools.channel {
name = "main";
src = ./.;
constitutents = builtins.attrValues jobs;
};
}