fix: move to nixfmt-rfc-style instead of nixpkgs-fmt

This commit is contained in:
Alexandre Cavalheiro S. Tiago da Silva 2024-06-24 03:20:30 -03:00
parent 5ad03ee2e8
commit ecbe0c069c
Signed by: wizardlink
GPG key ID: A5767B54367CFBDF
14 changed files with 184 additions and 83 deletions

View file

@ -1,7 +1,8 @@
{ lib
, buildNpmPackage
, fetchFromGitHub
, importNpmLock
{
lib,
buildNpmPackage,
fetchFromGitHub,
importNpmLock,
}:
buildNpmPackage rec {
@ -28,4 +29,12 @@ buildNpmPackage rec {
npmConfigHook = importNpmLock.npmConfigHook;
dontNpmPrune = true;
meta = with lib; {
description = "LSP wrapper around TypeScript extension bundled with VSCode.";
homepage = "https://github.com/yioneko/vtsls";
license = licenses.mit;
maintainers = with maintainers; [ wizardlink ];
platforms = platforms.all;
};
}