tnetplug/release.nix

18 lines
329 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 06:09:56 +08:00
with pkgs;
let
adc2tcp = callPackage (import ./default.nix) {
2019-03-20 05:12:28 +08:00
inherit rustManifest;
mozillaOverlay = import <mozillaOverlay>;
2019-03-20 06:09:56 +08:00
};
in
{
build = runCommand "build-adc2tcp" {
buildInputs = [ adc2tcp ];
};
}