python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / librespeed-cli / default.nix
blobfba0942dab52256a360159e59dc917b9bbaa7d50
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "librespeed-cli";
8   version = "1.0.10";
10   src = fetchFromGitHub {
11     owner = "librespeed";
12     repo = "speedtest-cli";
13     rev = "v${version}";
14     sha256 = "sha256-LFGlKYWUaHi/byoRPD6zsdr0U5r0zWxxRa2NJNB2yb8=";
15   };
17   vendorSha256 = "sha256-psZyyySpY06J+ji+9uHUtX7Ks1hzZC3zINszYP75NfQ=";
19   # Tests have additonal requirements
20   doCheck = false;
22   meta = with lib; {
23     description = "Command line client for LibreSpeed";
24     homepage = "https://github.com/librespeed/speedtest-cli";
25     license = with licenses; [ lgpl3Only ];
26     maintainers = with maintainers; [ fab ];
27   };