mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +00:00
f6f4fc200d
This workaround won't be needed anymore once #333759 is merged, which fixes the node_modules copying behavior in npm-install-hooks.
52 lines
1.3 KiB
Nix
52 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
buildNpmPackage,
|
|
fetchFromGitHub,
|
|
npm-lockfile-fix,
|
|
}:
|
|
|
|
buildNpmPackage rec {
|
|
pname = "protoc-gen-es";
|
|
version = "2.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bufbuild";
|
|
repo = "protobuf-es";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-foPt++AZjBfqKepzi2mKXB7zbpCqjmPftN9wyk5Yk8g=";
|
|
|
|
postFetch = ''
|
|
${lib.getExe npm-lockfile-fix} $out/package-lock.json
|
|
'';
|
|
};
|
|
|
|
npmDepsHash = "sha256-4m3xeiid+Ag9l1qNoBH08hu3wawWfNw1aqeniFK0Byc=";
|
|
|
|
npmWorkspace = "packages/protoc-gen-es";
|
|
|
|
preBuild = ''
|
|
npm run --workspace=packages/protobuf build
|
|
npm run --workspace=packages/protoplugin build
|
|
'';
|
|
|
|
# copy npm workspace modules while properly resolving symlinks
|
|
# TODO: workaround can be removed once this is merged: https://github.com/NixOS/nixpkgs/pull/333759
|
|
postInstall = ''
|
|
rm -rf $out/lib/node_modules/protobuf-es/node_modules/@bufbuild
|
|
cp -rL node_modules/@bufbuild $out/lib/node_modules/protobuf-es/node_modules/
|
|
'';
|
|
|
|
passthru.updateScript = ./update.sh;
|
|
|
|
meta = with lib; {
|
|
description = "Protobuf plugin for generating ECMAScript code";
|
|
homepage = "https://github.com/bufbuild/protobuf-es";
|
|
changelog = "https://github.com/bufbuild/protobuf-es/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [
|
|
felschr
|
|
jtszalay
|
|
];
|
|
};
|
|
}
|