python313Packages.filedepot: add legacy-cgi for Python 3.13 (#372373)
[NixPkgs.git] / pkgs / by-name / hu / hujsonfmt / package.nix
blobca4b54453e3856666a551919f1daaf3ed3a06643
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
7 let
8   inherit (lib) licenses maintainers;
9 in
10 buildGoModule {
11   pname = "hujsonfmt";
12   version = "0-unstable-2022-12-23";
14   src = fetchFromGitHub {
15     owner = "tailscale";
16     repo = "hujson";
17     rev = "20486734a56a3455c47994bf4942974d6f9969a0";
18     hash = "sha256-j2HRs5zZ0jTIqWIRhHheO9eaGzMMkNuKXuhboq9KpB4=";
19   };
21   proxyVendor = true;
22   vendorHash = "sha256-cvoj85BNnm/ZX1UnXKU2HjvjQkRZ9uN3U0BnD3DmiTE=";
24   subPackages = [ "cmd/hujsonfmt" ];
26   meta = {
27     homepage = "https://tailscale.com";
28     description = "Automatic formatter for HuJSON / JSON With Comments and trailing Commas (JWCC)";
29     license = licenses.bsd3;
30     mainProgram = "hujsonfmt";
31     maintainers = with maintainers; [ dan-theriault ];
32   };