nixpkgs/pkgs/development/compilers/typescript/default.nix

35 lines
880 B
Nix

{ lib, buildNpmPackage, fetchFromGitHub, testers, typescript }:
buildNpmPackage rec {
pname = "typescript";
version = "5.4.4";
src = fetchFromGitHub {
owner = "microsoft";
repo = "TypeScript";
rev = "v${version}";
hash = "sha256-8mVkVLy/E8Fl4Ds9NphtE2Hp1HLM8ehhW/dG6MlaLIs=";
};
patches = [
./disable-dprint-dstBundler.patch
];
npmDepsHash = "sha256-Csu9Ik9aC9qvZmx9Yn1xzkrP1bjHL0o72ZSwzCicFoI=";
passthru.tests = {
version = testers.testVersion {
package = typescript;
};
};
meta = with lib; {
description = "A superset of JavaScript that compiles to clean JavaScript output";
homepage = "https://www.typescriptlang.org/";
changelog = "https://github.com/microsoft/TypeScript/releases/tag/v${version}";
license = licenses.asl20;
maintainers = [ maintainers.marsam ];
mainProgram = "tsc";
};
}