mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
39 lines
1.2 KiB
Nix
39 lines
1.2 KiB
Nix
{ stdenv, lib, buildBazelPackage, bazel_6, fetchFromGitHub, darwin }:
|
|
|
|
buildBazelPackage rec {
|
|
pname = "protoc-gen-js";
|
|
version = "3.21.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "protocolbuffers";
|
|
repo = "protobuf-javascript";
|
|
rev = "v${version}";
|
|
hash = "sha256-TmP6xftUVTD7yML7UEM/DB8bcsL5RFlKPyCpcboD86U=";
|
|
};
|
|
|
|
bazel = bazel_6;
|
|
bazelTargets = [ "generator:protoc-gen-js" ];
|
|
bazelBuildFlags = lib.optionals stdenv.cc.isClang [ "--cxxopt=-x" "--cxxopt=c++" "--host_cxxopt=-x" "--host_cxxopt=c++" ];
|
|
removeRulesCC = false;
|
|
removeLocalConfigCC = false;
|
|
|
|
LIBTOOL = lib.optionalString stdenv.isDarwin "${darwin.cctools}/bin/libtool";
|
|
|
|
fetchAttrs.sha256 = "sha256-H0zTMCMFct09WdR/mzcs9FcC2OU/ZhGye7GAkx4tGa8=";
|
|
|
|
buildAttrs.installPhase = ''
|
|
mkdir -p $out/bin
|
|
install -Dm755 bazel-bin/generator/protoc-gen-js $out/bin/
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Protobuf plugin for generating JavaScript code";
|
|
mainProgram = "protoc-gen-js";
|
|
homepage = "https://github.com/protocolbuffers/protobuf-javascript";
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
license = with licenses; [ asl20 bsd3 ];
|
|
sourceProvenance = [ sourceTypes.fromSource ];
|
|
maintainers = with maintainers; [ Sorixelle ];
|
|
};
|
|
}
|