Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
58 lines
1.4 KiB
Nix
58 lines
1.4 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, testers
|
|
, toxiproxy
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "toxiproxy";
|
|
version = "2.9.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Shopify";
|
|
repo = "toxiproxy";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-zwKeJ8LMMSSHvE0x0/9j3wBdAJG43RiGcszKz0B3dG8=";
|
|
};
|
|
|
|
vendorHash = "sha256-eSQvLsSWWypA5vXR/GiEf5j7TzzsL8ZFRPOeICsIrlY=";
|
|
|
|
excludedPackages = [ "test/e2e" ];
|
|
|
|
ldflags = [ "-s" "-w" "-X github.com/Shopify/toxiproxy/v2.Version=${version}" ];
|
|
|
|
# Fixes tests on Darwin
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
checkFlags = [
|
|
"-short"
|
|
"-skip=TestVersionEndpointReturnsVersion|TestFullstreamLatencyBiasDown"
|
|
];
|
|
|
|
postInstall = ''
|
|
mv $out/bin/cli $out/bin/toxiproxy-cli
|
|
mv $out/bin/server $out/bin/toxiproxy-server
|
|
'';
|
|
|
|
passthru.tests = {
|
|
cliVersion = testers.testVersion {
|
|
inherit version;
|
|
package = toxiproxy;
|
|
command = "${toxiproxy}/bin/toxiproxy-cli -version";
|
|
};
|
|
serverVersion = testers.testVersion {
|
|
inherit version;
|
|
package = toxiproxy;
|
|
command = "${toxiproxy}/bin/toxiproxy-server -version";
|
|
};
|
|
};
|
|
|
|
meta = {
|
|
changelog = "https://github.com/Shopify/toxiproxy/releases/tag/v${version}";
|
|
description = "Proxy for for simulating network conditions";
|
|
homepage = "https://github.com/Shopify/toxiproxy";
|
|
maintainers = with lib.maintainers; [ avnik ];
|
|
license = lib.licenses.mit;
|
|
};
|
|
}
|