571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
59 lines
1.4 KiB
Nix
59 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;
|
|
};
|
|
}
|