Revert "another attempt at working around persistent channel src issue"

This reverts commit 04c902df76.
pull/16/head
Sebastien Bourdeauducq 2019-02-14 17:26:52 +08:00
parent 04c902df76
commit 4363f35e51
2 changed files with 3 additions and 8 deletions

View File

@ -1,6 +0,0 @@
{ pkgs ? import <nixpkgs> {}, constituents}:
pkgs.releaseTools.channel {
name = "main";
src = ./.;
inherit constituents;
}

View File

@ -38,8 +38,9 @@ let
} // boardJobs // artiqPkgs;
in
jobs // {
channel = import "${generatedNix}/channel.nix" {
inherit pkgs;
channel = pkgs.releaseTools.channel {
name = "main";
src = "${generatedNix}";
constituents = builtins.attrValues jobs;
};
}