lol

json2ts: init at v15.0.2 (#339040)

authored by

lassulus and committed by
GitHub
91a63aee 31c0c535

+25
+25
pkgs/by-name/js/json2ts/package.nix
··· 1 + { 2 + buildNpmPackage, 3 + fetchFromGitHub, 4 + lib, 5 + }: 6 + buildNpmPackage { 7 + name = "json2ts"; 8 + version = "15.0.2"; 9 + src = fetchFromGitHub { 10 + owner = "bcherny"; 11 + repo = "json-schema-to-typescript"; 12 + rev = "118d6a8e7a5a9397d1d390ce297f127ae674a623"; 13 + hash = "sha256-ldAFfw3E0A0lIJyDSsshgPRPR7OmV/FncPsDhC3waT8="; 14 + }; 15 + npmDepsHash = "sha256-kLKau4SBxI9bMAd7X8/FQfCza2sYl/+0bg2LQcOQIJo="; 16 + 17 + meta = with lib; { 18 + mainProgram = "json2ts"; 19 + description = "Compile JSON Schema to TypeScript type declarations"; 20 + homepage = "https://github.com/bcherny/json-schema-to-typescript"; 21 + license = licenses.mit; 22 + maintainers = with maintainers; [ hsjobeki ]; 23 + platforms = platforms.all; 24 + }; 25 + }