From 0be4a352ef36a24dd539dacba0702ae742437f4a Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Wed, 28 Jun 2023 04:20:00 +0000 Subject: [PATCH] typescript: 5.1.3 -> 5.1.5 Diff: https://github.com/microsoft/TypeScript/compare/v5.1.3...v5.1.5 Changelog: https://github.com/microsoft/TypeScript/releases/tag/v5.1.5 --- pkgs/development/compilers/typescript/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/compilers/typescript/default.nix b/pkgs/development/compilers/typescript/default.nix index 15e786543e23..6794b15f6e80 100644 --- a/pkgs/development/compilers/typescript/default.nix +++ b/pkgs/development/compilers/typescript/default.nix @@ -2,20 +2,20 @@ buildNpmPackage rec { pname = "typescript"; - version = "5.1.3"; + version = "5.1.5"; src = fetchFromGitHub { owner = "microsoft"; repo = "TypeScript"; rev = "v${version}"; - hash = "sha256-c+ZI58Zk6TXwJoWUAXeIMToT+e7Ozdn7hxiDpPjeQJg="; + hash = "sha256-HdDzkDhlaTDUNmAsWlLUHuGAIgXGcgZW4dZAweaXrL0="; }; npmDepsHash = "sha256-RHiUhhkzkr2Ra3wc1d13gE2WIZL49w7IEFEAZuBDTDI="; meta = with lib; { description = "A superset of JavaScript that compiles to clean JavaScript output"; - homepage = "https://github.com/microsoft/TypeScript"; + homepage = "https://www.typescriptlang.org/"; changelog = "https://github.com/microsoft/TypeScript/releases/tag/v${version}"; license = licenses.asl20; maintainers = [ maintainers.marsam ];