mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-11 18:32:23 +08:00
It is more common to specify hash as the last attribute of fetcher
function args. Let's move fetcherVersion right above hash for all
occurrences.
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
(cherry picked from commit a8c9a2aa3e)
76 lines
1.6 KiB
Nix
76 lines
1.6 KiB
Nix
{
|
|
fetchFromGitHub,
|
|
lib,
|
|
nodejs,
|
|
pnpm_9,
|
|
stdenvNoCC,
|
|
nix-update-script,
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation (finalAttrs: {
|
|
pname = "stylelint-lsp";
|
|
version = "2.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bmatcuk";
|
|
repo = "stylelint-lsp";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-LUX/H7yY8Dl44vgpf7vOgtMdY7h//m5BAfrK5RRH9DM=";
|
|
};
|
|
|
|
buildInputs = [
|
|
nodejs
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
pnpm_9.configHook
|
|
];
|
|
|
|
pnpmDeps = pnpm_9.fetchDeps {
|
|
inherit (finalAttrs) pname version src;
|
|
fetcherVersion = 1;
|
|
hash = "sha256-PVA6sXbiuxqvi9u3sPoeVIJSSpSbFQHQQnTFO3w31WE=";
|
|
};
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
|
|
pnpm build
|
|
|
|
runHook postBuild
|
|
'';
|
|
|
|
preInstall = ''
|
|
# remove unnecessary files
|
|
pnpm --ignore-scripts prune --prod
|
|
rm -rf node_modules/.pnpm/typescript*
|
|
find -type f \( -name "*.ts" -o -name "*.map" \) -exec rm -rf {} +
|
|
# https://github.com/pnpm/pnpm/issues/3645
|
|
find node_modules -xtype l -delete
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/{bin,lib/${finalAttrs.pname}}
|
|
mv {dist,node_modules} $out/lib/${finalAttrs.pname}
|
|
chmod a+x $out/lib/${finalAttrs.pname}/dist/index.js
|
|
ln -s $out/lib/${finalAttrs.pname}/dist/index.js $out/bin/stylelint-lsp
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "A stylelint Language Server";
|
|
homepage = "https://github.com/bmatcuk/stylelint-lsp";
|
|
license = lib.licenses.mit;
|
|
mainProgram = "stylelint-lsp";
|
|
maintainers = with lib.maintainers; [
|
|
gepbird
|
|
];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
})
|