forked from M-Labs/nix-scripts
Revert "another attempt at working around persistent channel src issue"
This reverts commit 04c902df76
.
This commit is contained in:
parent
04c902df76
commit
4363f35e51
|
@ -1,6 +0,0 @@
|
||||||
{ pkgs ? import <nixpkgs> {}, constituents}:
|
|
||||||
pkgs.releaseTools.channel {
|
|
||||||
name = "main";
|
|
||||||
src = ./.;
|
|
||||||
inherit constituents;
|
|
||||||
}
|
|
5
main.nix
5
main.nix
|
@ -38,8 +38,9 @@ let
|
||||||
} // boardJobs // artiqPkgs;
|
} // boardJobs // artiqPkgs;
|
||||||
in
|
in
|
||||||
jobs // {
|
jobs // {
|
||||||
channel = import "${generatedNix}/channel.nix" {
|
channel = pkgs.releaseTools.channel {
|
||||||
inherit pkgs;
|
name = "main";
|
||||||
|
src = "${generatedNix}";
|
||||||
constituents = builtins.attrValues jobs;
|
constituents = builtins.attrValues jobs;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue