aws-lc: 1.39.0 -> 1.42.0 (#369942)
[NixPkgs.git] / pkgs / by-name / fi / fixjson / package.nix
blob37623c8bcc4f85fa30f42c383cae49aced44c484
2   lib,
3   buildNpmPackage,
4   fetchFromGitHub,
5 }:
7 buildNpmPackage {
8   pname = "fixjson";
9   version = "1.1.2-unstable-2021-01-05";
11   src = fetchFromGitHub {
12     owner = "rhysd";
13     repo = "fixjson";
14     # Upstream has no tagged releases, but this commit bumps version
15     rev = "d0483f9cc59896ea59bb16f906f770562d332000";
16     hash = "sha256-Mu7ho0t5GzFYuBK6FEXhpsaRxn9HF3lnvMxRpg0aqYI=";
17   };
19   npmDepsHash = "sha256-tnsgNtMdnrKYxcYy9+4tgp1BX+o8e5/HUDeSP5BOvUQ=";
21   meta = {
22     description = "JSON Fixer for Humans using (relaxed) JSON5";
23     homepage = "https://github.com/rhysd/fixjson";
24     license = lib.licenses.mit;
25     mainProgram = "fixjson";
26     maintainers = with lib.maintainers; [ pyrox0 ];
27   };