tnetplug/release.nix

16 lines
279 B
Nix
Raw Permalink 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 06:09:56 +08:00
with pkgs;
let
2019-12-01 17:03:02 +08:00
tnetplug = callPackage ./default.nix {
2019-03-20 05:12:28 +08:00
inherit rustManifest;
mozillaOverlay = import <mozillaOverlay>;
2019-03-20 06:09:56 +08:00
};
in
{
2019-12-01 17:03:02 +08:00
build = lib.hydraJob tnetplug;
}