thermostat/release.nix

15 lines
335 B
Nix
Raw Normal View History

# For running on Hydra
2019-03-20 05:12:28 +08:00
{ pkgs ? import <nixpkgs> {},
rustManifest ? ./nix/channel-rust-nightly.toml
}:
2019-03-20 04:47:31 +08:00
{
2019-03-20 05:12:28 +08:00
channel = pkgs.releaseTools.channel {
name = "adc2tcp";
2019-03-20 04:47:31 +08:00
adc2tcp = pkgs.lib.hydraJob (import ./default.nix {
2019-03-20 05:12:28 +08:00
inherit rustManifest;
mozillaOverlay = import <mozillaOverlay>;
rustRestrictedManifest = true;
2019-03-20 04:47:31 +08:00
});
}