thermostat/release.nix

12 lines
261 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:42:13 +08:00
adc2tcp = pkgs.lib.hydraJob (pkgs.callPackage (import ./default.nix) {
2019-03-20 05:12:28 +08:00
inherit rustManifest;
mozillaOverlay = import <mozillaOverlay>;
2019-03-20 04:47:31 +08:00
});
}