libzim: add changelog to meta

This commit is contained in:
Fabian Affolter 2022-12-04 10:30:57 +01:00 committed by GitHub
parent fe49c31680
commit bd7d06ed30
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,8 +16,8 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "openzim";
repo = pname;
rev = version;
sha256 = "sha256-ab7UUF+I0/xaGChvdjylEQRHLOjmtg/wk+/JEGehGLE=";
rev = "refs/tags/${version}";
hash = "sha256-ab7UUF+I0/xaGChvdjylEQRHLOjmtg/wk+/JEGehGLE=";
};
nativeBuildInputs = [
@ -42,6 +42,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Reference implementation of the ZIM specification";
homepage = "https://github.com/openzim/libzim";
changelog = "https://github.com/openzim/libzim/releases/tag/${version}";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ fab ];
};