0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 14:10:33 +03:00

protobuf_31: init at 31.0 (#408160)

This commit is contained in:
Gaétan Lepage 2025-05-18 10:26:16 +02:00 committed by GitHub
commit 987f695686
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 11 additions and 0 deletions

View file

@ -0,0 +1,9 @@
{ callPackage, ... }@args:
callPackage ./generic.nix (
{
version = "31.0";
hash = "sha256-Y1qTHFl9xItaIs5u3mr+US1d1KmIfVJXqC7q4AA2U/w=";
}
// args
)

View file

@ -9337,6 +9337,7 @@ with pkgs;
inherit
({
protobuf_31 = callPackage ../development/libraries/protobuf/31.nix { };
protobuf_30 = callPackage ../development/libraries/protobuf/30.nix { };
protobuf_29 = callPackage ../development/libraries/protobuf/29.nix { };
protobuf_28 = callPackage ../development/libraries/protobuf/28.nix { };
@ -9348,6 +9349,7 @@ with pkgs;
abseil-cpp = abseil-cpp_202103;
};
})
protobuf_31
protobuf_30
protobuf_29
protobuf_28