Skip to content

Commit

Permalink
protobuf: 28.0 -> 28.1 (#341245)
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSandro2000 authored Sep 12, 2024
2 parents 76f4ef6 + d72ee97 commit 962ed4c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/libraries/protobuf/28.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

callPackage ./generic.nix (
{
version = "28.0";
hash = "sha256-dAyXtBPeZAhmAOWbG1Phh57fqMmkH2AbDUr+8A+irJQ=";
version = "28.1";
hash = "sha256-D1NjI6nujLnl4jnw9P2L3U+K58KCTOjLTmJhqTTcGuI=";
}
// args
)
11 changes: 6 additions & 5 deletions pkgs/development/python-modules/protobuf/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@

buildPythonPackage rec {
pname = "protobuf";
version = "5.28.0";
version = "5.28.1";
pyproject = true;

src = fetchPypi {
inherit pname version;
hash = "sha256-3edK8Pp3T6mIkiCZkila2/uR2j+pjI9nqIr+j1o0mt0=";
hash = "sha256-Qll+k4+Du38+SzXwOqRSCNSa6NW8tLwQufyCXgq15CM=";
};

build-system = [ setuptools ];
Expand All @@ -30,10 +30,11 @@ buildPythonPackage rec {
"google._upb._message"
];

meta = with lib; {
meta = {
description = "Protocol Buffers are Google's data interchange format";
homepage = "https://developers.google.com/protocol-buffers/";
license = licenses.bsd3;
maintainers = with maintainers; [ SuperSandro2000 ];
changelog = "https://github.com/protocolbuffers/protobuf/releases/v${version}";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ SuperSandro2000 ];
};
}

0 comments on commit 962ed4c

Please sign in to comment.