Merge pull request #157086 from das-g/protozero-1.7.1

protozero: 1.7.0 → 1.7.1
This commit is contained in:
Renaud 2022-02-10 20:07:14 +01:00 committed by GitHub
commit 18c9cc4090
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "protozero";
version = "1.7.0";
version = "1.7.1";
src = fetchFromGitHub {
owner = "mapbox";
repo = "protozero";
rev = "v${version}";
sha256 = "0fdihfl5j68wayjjxvpvhvnjq1anzcfnfl09f68wpzbkg3zmhblz";
sha256 = "sha256-R8lGewsEOxPNbKlkIeiM4yIwUcTzi2Dm0+xJ2WrBTBQ=";
};
nativeBuildInputs = [ cmake ];
@ -17,6 +17,10 @@ stdenv.mkDerivation rec {
description = "Minimalistic protocol buffer decoder and encoder in C++";
homepage = "https://github.com/mapbox/protozero";
license = with licenses; [ bsd2 asl20 ];
changelog = [
"https://github.com/mapbox/protozero/releases/tag/v${version}"
"https://github.com/mapbox/protozero/blob/v${version}/CHANGELOG.md"
];
maintainers = with maintainers; [ das-g ];
};
}