Skip to content

Commit

Permalink
Merge pull request #298407 from gepbird/stylelint-lsp-init
Browse files Browse the repository at this point in the history
stylelint-lsp: init at 2.0.0
  • Loading branch information
SuperSandro2000 authored Jun 25, 2024
2 parents 44b22d8 + 360fecb commit ec13fea
Showing 1 changed file with 61 additions and 0 deletions.
61 changes: 61 additions & 0 deletions pkgs/by-name/st/stylelint-lsp/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
{
bash,
fetchFromGitHub,
lib,
nodejs,
pnpm_9,
stdenvNoCC,
}:

stdenvNoCC.mkDerivation (finalAttrs: {
pname = "stylelint-lsp";
version = "2.0.0";

src = fetchFromGitHub {
owner = "bmatcuk";
repo = "stylelint-lsp";
rev = "v${finalAttrs.version}";
hash = "sha256-mzhY6MKkXb1jFYZvs/VkGipBjBfUY3GukICb9qVQI80=";
};

nativeBuildInputs = [
nodejs
pnpm_9.configHook
];

pnpmDeps = pnpm_9.fetchDeps {
inherit (finalAttrs) pname version src;
hash = "sha256-/QJ4buPOt5KFJxwsQp7L9WYE1RtODj4LMq21l99QwhA=";
};

buildPhase = ''
runHook preBuild
pnpm build
runHook postBuild
'';

installPhase = ''
runHook preInstall
mkdir -p $out/{bin,lib/${finalAttrs.pname}}
mv {dist,node_modules} $out/lib/${finalAttrs.pname}
echo "
#!${lib.getExe bash}
${lib.getExe nodejs} $out/lib/${finalAttrs.pname}/dist/index.js \$@
" > $out/bin/stylelint-lsp
chmod +x $out/bin/stylelint-lsp
runHook postInstall
'';

meta = with lib; {
description = "A stylelint Language Server";
homepage = "https://github.com/bmatcuk/stylelint-lsp";
license = licenses.mit;
maintainers = with maintainers; [ gepbird ];
mainProgram = "stylelint-lsp";
platforms = platforms.unix;
};
})

0 comments on commit ec13fea

Please sign in to comment.