python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / networking / cassowary / default.nix
bloba5b0b7c807865dcaa196aa544e68ae7ae66ddd08
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "cassowary";
5   version = "0.15.0";
7   src = fetchFromGitHub {
8     owner = "rogerwelin";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-eZ61LIDMv+G7jnSrEFCsm6MP5+BpzJW+OnI9bqAZ5hw=";
12   };
14   vendorSha256 = "sha256-5U/YqqNfZfLZLEwuRh4mXACr9Gj7iOrLQRSLC/b8ZRw=";
16   ldflags = [ "-s" "-w" "-X main.version=${version}" ];
18   meta = with lib; {
19     homepage = "https://github.com/rogerwelin/cassowary";
20     description = "Modern cross-platform HTTP load-testing tool written in Go";
21     license = licenses.mit;
22     maintainers = with maintainers; [ hugoreeves ];
23     platforms = platforms.unix;
24   };