forked from M-Labs/nix-scripts
rename channels
nix-channel --add <url> now gives a good channel name by default
This commit is contained in:
parent
c5ade34066
commit
53d8569d35
|
@ -43,8 +43,8 @@ let
|
||||||
in
|
in
|
||||||
jobs // {
|
jobs // {
|
||||||
generated-nix = pkgs.lib.hydraJob generatedNix; # used by artiq-full
|
generated-nix = pkgs.lib.hydraJob generatedNix; # used by artiq-full
|
||||||
channel = pkgs.releaseTools.channel rec {
|
artiq-fast = pkgs.releaseTools.channel {
|
||||||
name = "main";
|
name = "artiq-fast";
|
||||||
src = generatedNix;
|
src = generatedNix;
|
||||||
constituents = builtins.attrValues jobs;
|
constituents = builtins.attrValues jobs;
|
||||||
};
|
};
|
||||||
|
|
|
@ -121,8 +121,8 @@ let
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
jobs // {
|
jobs // {
|
||||||
channel = pkgs.releaseTools.channel {
|
artiq-full = pkgs.releaseTools.channel {
|
||||||
name = "sinara-systems";
|
name = "artiq-full";
|
||||||
src = generatedNix;
|
src = generatedNix;
|
||||||
constituents = builtins.attrValues jobs;
|
constituents = builtins.attrValues jobs;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue