python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / yj / default.nix
blob017434134ca1ae88f5c65d86d4b6b2fc79d39d6b
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "yj";
5   version = "5.0.0";
7   src = fetchFromGitHub {
8     owner = "sclevine";
9     repo = "yj";
10     rev = "c4c13b7641389c76ea028b48091f851f3efb6376";
11     sha256 = "0bnb88wfm2vagh4yb1h9xhp3045ga0b6a77n3j2z5b4mvwshx5dr";
12   };
14   vendorSha256 = "0y0n9fsb85qlpf9slwsxzarmfi98asa4x04qp2r8pagl28l0i8wv";
16   ldflags = [ "-s" "-w" "-X main.Version=${version}" ];
18   meta = with lib; {
19     description = "Convert YAML <=> TOML <=> JSON <=> HCL";
20     license = licenses.asl20;
21     maintainers = with maintainers; [ Profpatsch ];
22     homepage = "https://github.com/sclevine/yj";
23   };