rename channels

nix-channel --add <url> now gives a good channel name by default
tecpak
Sebastien Bourdeauducq 2019-07-17 20:03:36 +08:00
parent c5ade34066
commit 53d8569d35
2 changed files with 4 additions and 4 deletions

View File

@ -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;
}; };

View File

@ -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;
}; };