dts-lsp: init at 0.1.5

+34
+34
pkgs/by-name/dt/dts-lsp/package.nix
··· 1 + { 2 + fetchFromGitHub, 3 + lib, 4 + nix-update-script, 5 + rustPlatform, 6 + }: 7 + 8 + rustPlatform.buildRustPackage (finalAttrs: { 9 + pname = "dts-lsp"; 10 + version = "0.1.5"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "igor-prusov"; 14 + repo = "dts-lsp"; 15 + tag = finalAttrs.version; 16 + hash = "sha256-8wMY0o8ceVl5UTsSpXf44gbX1ipSuR50cQTRng+MuNk="; 17 + }; 18 + 19 + cargoHash = "sha256-hZZcu3LaG4kkXJSF0uxHrdPB3YWB3hMv+jrMLMDp2aI="; 20 + 21 + passthru.updateScript = nix-update-script { }; 22 + 23 + meta = { 24 + description = "Language Server for Device Tree Source files"; 25 + homepage = "https://github.com/igor-prusov/dts-lsp"; 26 + changelog = "https://github.com/igor-prusov/dts-lsp/blob/${finalAttrs.version}/CHANGELOG.md"; 27 + license = with lib.licenses; [ 28 + asl20 29 + mit 30 + ]; 31 + maintainers = [ lib.maintainers.jmbaur ]; 32 + mainProgram = "dts-lsp"; 33 + }; 34 + })