pounder_test/release.nix

16 lines
283 B
Nix
Raw Normal View History

2019-05-15 10:36:34 +08:00
# For running on Hydra
{ pkgs ? import <nixpkgs> {},
rustManifest ? ./nix/channel-rust-nightly.toml
}:
with pkgs;
let
stabilizer = callPackage ./default.nix {
inherit rustManifest;
mozillaOverlay = import <mozillaOverlay>;
};
in
{
build = lib.hydraJob stabilizer;
}