Merge pull request #296885 from wegank/protobuf-23-fix

protobuf_23: fix build
This commit is contained in:
Weijia Wang
2024-03-19 22:56:35 +01:00
committed by GitHub
2 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -170,7 +170,7 @@ stdenv.mkDerivation rec {
'';
meta = with lib; {
broken = stdenv.isDarwin;
broken = true; # last successful build 2024-01-26
description = "a generic build tool";
homepage = "https://github.com/just-buildsystem/justbuild";
license = licenses.asl20;
+3 -1
View File
@@ -24236,7 +24236,9 @@ with pkgs;
protobuf_25 = callPackage ../development/libraries/protobuf/25.nix { };
protobuf_24 = callPackage ../development/libraries/protobuf/24.nix { };
protobuf_23 = callPackage ../development/libraries/protobuf/23.nix { };
protobuf_23 = callPackage ../development/libraries/protobuf/23.nix {
abseil-cpp = abseil-cpp_202301;
};
protobuf_21 = callPackage ../development/libraries/protobuf/21.nix {
abseil-cpp = abseil-cpp_202103;
};