docs: add generated packages readme

This commit is contained in:
matt1432 2025-01-20 15:06:16 -05:00
parent 546eda3ee2
commit 6aca512b8a
10 changed files with 71 additions and 14 deletions
packages/some-sass-language-server

View file

@ -1,4 +1,5 @@
{
lib,
writeShellApplication,
nodejs_latest,
prefetch-npm-deps,
@ -8,9 +9,10 @@
...
}: let
package = builtins.fromJSON (builtins.readFile ./package.json);
pname = "some-sass-language-server";
in
buildNpmPackage {
pname = "some-sass-language-server";
inherit pname;
version = package.dependencies.some-sass-language-server;
src = ./.;
@ -35,4 +37,11 @@ in
];
text = import ./update.nix;
};
meta = {
description = "Some Sass is a language server extension for Visual Studio Code and other editors with a language server protocol (LSP) client. It brings improved code suggestions, documentation and code navigation for both SCSS and indented syntaxes.";
mainProgram = pname;
homepage = "https://github.com/wkillerud/some-sass";
license = with lib.licenses; [isc];
};
}