mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 02:44:30 +00:00
e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
39 lines
1.2 KiB
Nix
39 lines
1.2 KiB
Nix
{ stdenv, lib, buildBazelPackage, bazel_6, fetchFromGitHub, cctools }:
|
|
|
|
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.hostPlatform.isDarwin "${cctools}/bin/libtool";
|
|
|
|
fetchAttrs.hash = "sha256-WOBlZ0XNrl5UxIaSDxZeOfzS2a8ZkrKdTLKHBDC9UNQ=";
|
|
|
|
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 = [ ];
|
|
};
|
|
}
|