python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / json2hcl / default.nix
blob1f1b1a5568d42a8d4240705c44d31e0fb3dc183c
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "json2hcl";
5   version = "0.1.1";
7   src = fetchFromGitHub {
8     owner = "kvz";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-0ku8sON4fzWAirqY+dhYAks2LSyC7OH/LKI0kb+QhpM=";
12   };
14   vendorSha256 = "sha256-GxYuFak+5CJyHgC1/RsS0ub84bgmgL+bI4YKFTb+vIY=";
16   ldflags = [ "-s" "-w" ];
18   meta = with lib; {
19     description = "Convert JSON to HCL, and vice versa";
20     homepage = "https://github.com/kvz/json2hcl";
21     license = licenses.mit;
22     maintainers = with maintainers; [ matthewbauer ];
23   };